WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 08-14-2020, 06:57 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Here's an example using a task function that should capture an object before and after removing it:

Code:
import viz
import viztask

viz.go()

dojo = viz.addChild('dojo.osgb')
ball = viz.addChild('beachball.osgb', pos=[0,1.8,2])

def screenCaptureTask():
	viz.window.screenCapture('Before.png')
	yield viztask.waitFrame(1)
	ball.remove()
	viz.window.screenCapture('After.png')

viztask.schedule( screenCaptureTask() )
Reply With Quote
 

Tags
remove objects, saving, screen capture, screenshots, viz.window.screencapture


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Calling vizard functions in a loop omidbrb Vizard 1 09-23-2009 09:19 AM
screenshots using a loop krimble Vizard 2 09-14-2009 02:20 AM
Creating a loop to switch between menu pages RodRSpv Vizard 1 03-02-2009 02:19 PM
For Loop in Callbacks? DrunkenBrit Vizard 2 02-19-2009 12:26 AM
for loop concatenation for 300 billboarding trees eugcc Vizard 4 04-22-2004 12:46 AM


All times are GMT -7. The time now is 04:06 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC