WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 08-18-2014, 03:58 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
The viztask.waitMouseDown command has been updated and no longer expects the viz.Data object to be passed as an argument. Use the following instead:

Code:
def example_trial():
	startTime = viz.tick()
	response = yield viztask.waitMouseDown( None )
	print 'response at: ', viz.tick() 
	reactionTime = response.time - startTime
	print reactionTime
Reply With Quote
  #2  
Old 08-19-2014, 12:23 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
To be clear, this is just a warning. Your existing code should still function properly. Deprecated functions are not removed until the next major version, so you have until Vizard 6 to update your code.

If you would like to simply disable the warnings, then add the following code to the beginning of your script. However, I would strongly recommend that you just update your code.
Code:
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
Reply With Quote
Reply

Tags
condition, data, deprecation, warning, yield

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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
Unexpected Avatar lookAt() behavior when using yield statements chris2307 Vizard 2 12-17-2013 03:58 AM
connecting to SMI iViewX running a RED tracker pkhoosh Vizard 11 10-20-2011 05:17 PM
running experimental trials fivel_lab Vizard 3 03-18-2011 03:58 PM
exiting a yield statement starbug Vizard 2 01-12-2010 04:16 PM
Problems running R3 and R2.5 on the same computer cade_mccall Vizard 5 09-05-2006 12:26 PM


All times are GMT -7. The time now is 06:18 PM.


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