WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 07-05-2009, 03:23 AM
kasdeja kasdeja is offline
Member
 
Join Date: Jul 2009
Posts: 2
2d text placing to max animation in vizard

Hello all,
I am very very new in vizard. I need little help about something. I have made an animation in 3d max and I have exported it in vizard. From now on animation in vizard is working very well. The question is I want to add 2d texts to this animation which showing in different times. For example between 15-19 seconds 'box' showing up on screen than between 55-59 seconds 'sphere' is showing up. How can I do this?
Thanks in advance.
Reply With Quote
  #2  
Old 07-06-2009, 11:59 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You can add text to the screen and then make it visibile or hide it when a timer function is called.
Code:
#Add text to the screen.
text_2D = viz.addText('box', viz.SCREEN )
text_2D.setPosition(.5,.5)
text_2D.visible(viz.OFF)

def showBox():
	text_2D.visible(viz.ON)
	vizact.ontimer2(4,0,text_2D.visible, viz.OFF)

vizact.ontimer2(15,0,showBox)
Reply With Quote
  #3  
Old 07-07-2009, 01:34 PM
kasdeja kasdeja is offline
Member
 
Join Date: Jul 2009
Posts: 2
Thanks for your answer
Reply With Quote
Reply

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
Vizard tech tip: Using the Python Imaging Library (PIL) Jeff Vizard 0 03-23-2009 11:13 AM
Vizard tech tip: Text to Speech Jeff Vizard 1 01-15-2009 09:39 PM
Placing Text onto another object??? Elittdogg Vizard 4 04-08-2008 02:15 PM
Fall 2007 release of Vizard R3 3 D Announcements 0 10-15-2007 04:50 PM
Animation Tracks.... k_iwan Vizard 2 03-26-2007 05:52 PM


All times are GMT -7. The time now is 03:39 PM.


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