WorldViz User Forum  

Go Back   WorldViz User Forum > Search Forums

Showing results 51 to 75 of 99
Search took 0.01 seconds; generated 68 minute(s) ago.
Search: Posts Made By: Moh200jo
Forum: Vizard 05-05-2009, 11:24 AM
Replies: 8
Views: 38,526
Posted By Moh200jo
the sound like you have to use timer. Could you...

the sound like you have to use timer. Could you please looking at vizard functions because vizard has a timer function.
hope this helped you!
Forum: Vizard 05-01-2009, 08:20 AM
Replies: 2
Views: 38,613
Posted By Moh200jo
Hi you have to install the pyparllel from here ...

Hi
you have to install the pyparllel from here (http://sourceforge.net/project/showfiles.php?group_id=46487&package_id=77441).
Forum: Vizard 04-29-2009, 07:34 AM
Replies: 10
Views: 32,163
Posted By Moh200jo
Well, I have attached with this thread a sample...

Well, I have attached with this thread a sample of what I am trying to use. Indeed, I am using exactly the tasks example in vizard teacher book.
In this code you will see 2 main faults which are the...
Forum: Vizard 04-27-2009, 02:29 PM
Replies: 4
Views: 64,068
Posted By Moh200jo
I guess you will find the link activation in your...

I guess you will find the link activation in your email
Forum: Vizard 04-27-2009, 03:42 AM
Replies: 10
Views: 32,163
Posted By Moh200jo
it works fine. but i am trying to use the...

it works fine. but i am trying to use the following lines to see the score
data = viz.Data()
yield viztask.waitEvent( viz.COLLISION_EVENT, data )

but this does not work with the following event...
Forum: Vizard 04-24-2009, 11:01 AM
Replies: 1
Views: 24,072
Posted By Moh200jo
I got it :D thanks chaps!

I got it :D thanks chaps!
Forum: Vizard 04-24-2009, 10:17 AM
Replies: 1
Views: 24,072
Posted By Moh200jo
Exclamation Timer

how can I make my balloons appear for 5 sec then disappear?
import viz
import vizact
import viztask
viz.go()
import random
def func1():
balloons = []
for i in range(-5,6):
for j in...
Forum: Vizard 04-23-2009, 11:08 AM
Replies: 6
Views: 34,025
Posted By Moh200jo
I have tried with the following code; does not...

I have tried with the following code; does not work
import viz

viz.go()

viz.add('tut_ground.wrl')
#Add the ground and an avatar.
avatar = viz.addAvatar( 'vcc_female.cfg' )...
Forum: Vizard 04-23-2009, 07:44 AM
Replies: 6
Views: 34,025
Posted By Moh200jo
Hi David, Have you got the code of bone...

Hi David,
Have you got the code of bone collision?
Thanks in advance.
Forum: Vizard 04-23-2009, 02:20 AM
Replies: 1
Views: 21,049
Posted By Moh200jo
I guess you have to define a function to read the...

I guess you have to define a function to read the avatar's position.
Forum: Vizard 04-21-2009, 09:39 AM
Replies: 7
Views: 45,431
Posted By Moh200jo
I correct something like this: avatar_position...

I correct something like this:
avatar_position = avatar.getPosition()
def avatarstate():
global avatar_position
if avatar_position == avatar.getPosition():
avatar.state(1)
else:...
Forum: Vizard 04-21-2009, 09:08 AM
Replies: 7
Views: 45,431
Posted By Moh200jo
yes just define a function to check the avatar...

yes just define a function to check the avatar state
Forum: Vizard 04-21-2009, 07:11 AM
Replies: 7
Views: 45,431
Posted By Moh200jo
I correct this what you are looking for. ...

I correct this what you are looking for.
import viz
import vizcam
viz.go()
viz.add('tut_ground.wrl')
avatar = viz.add('vcc_female.cfg')
avatar.state(2)
handcontrol =...
Forum: Vizard 04-21-2009, 06:41 AM
Replies: 7
Views: 45,431
Posted By Moh200jo
try the following code to link the avatar with...

try the following code to link the avatar with the mainview
mainview=viz.clearcolor(viz.SKYBLUE)
avatar = viz.add('vcc_female.cfg')
avatar.setPosition(0,0,9)
view = viz.MainView
link =...
Forum: Vizard 04-21-2009, 03:57 AM
Replies: 10
Views: 32,163
Posted By Moh200jo
HI Jeff ,Thank you very much for your help. I...

HI Jeff ,Thank you very much for your help.
I cannot understand the collision in vizard although it looks very easy! :confused:
I have struggled to detect the collision event by more than one way...
Forum: Vizard 04-09-2009, 05:54 PM
Replies: 10
Views: 32,163
Posted By Moh200jo
well, JEFF, I have tried to follow the gallery...

well, JEFF, I have tried to follow the gallery example in tutorial as well as your advices. the collision works around main-view and all stuff react including avatar. but the avatar responses as an...
Forum: Vizard 04-09-2009, 08:35 AM
Replies: 10
Views: 32,163
Posted By Moh200jo
Jeff I tried with many ways; below is my...

Jeff I tried with many ways; below is my modification but does not work :confused:
import viz

viz.go()
viz.phys.enable()
court= viz.add( 'court.ive' )
court.setPosition(0,0,15)...
Forum: Vizard 04-08-2009, 06:25 AM
Replies: 6
Views: 23,693
Posted By Moh200jo
it works! thanks Jeff for your help.

it works! thanks Jeff for your help.
Forum: Vizard 04-08-2009, 06:24 AM
Replies: 10
Views: 32,163
Posted By Moh200jo
Collision

Hi, This code is trying to not allow the avatar to walk through the court’s wall and balloon.
May my collision statement for avatar is wrong, but this what I have found in tutorials.
import viz
...
Forum: Vizard 04-07-2009, 05:44 AM
Replies: 6
Views: 23,693
Posted By Moh200jo
That is brilliant, but still there is small...

That is brilliant, but still there is small problem, which is the speed. Once the avatar’s speed has been increased, the user will realize that the mainview is moving not the avatar. So how can I...
Forum: Vizard 04-06-2009, 09:43 AM
Replies: 8
Views: 27,582
Posted By Moh200jo
I have done it. OSG Exporter 0.9.5 shall be used...

I have done it. OSG Exporter 0.9.5 shall be used for Max 2009
I could not have a control into main view that I have imported it.
please see my code.
import viz
viz.go()...
Forum: Vizard 04-06-2009, 09:10 AM
Replies: 6
Views: 23,693
Posted By Moh200jo
Oh, thanks Jeff! But when the avatar stopped...

Oh, thanks Jeff!
But when the avatar stopped for awhile, and then she wants to continue with same direction the code takes her to the other direction (z-axis).
I have tried to increment x-axis but...
Forum: Vizard 04-06-2009, 04:23 AM
Replies: 6
Views: 23,693
Posted By Moh200jo
Walking to many directions.

Hi every one, my avatar will walk to unknown distances and directions. I tried to rotate her while she is walking but the code does not response. I am still plying with the following code.
import...
Forum: Vizard 04-03-2009, 05:07 AM
Replies: 8
Views: 27,582
Posted By Moh200jo
Thanks Jeff, I am using Max 2009. Yes I have...

Thanks Jeff,
I am using Max 2009. Yes I have downloaded the OSG exporter for Max from your site.
May I ask here... why it is difficult to work with my own .wrl while .wrl has been used by many...
Forum: Vizard 04-02-2009, 10:45 AM
Replies: 0
Views: 20,020
Posted By Moh200jo
import Mainview

This shall be a silly problem, following to my previous threads I have a problem in my own environment; this environment does not follow the avatar while she is walking.
import viz
viz.go()...
Showing results 51 to 75 of 99

 
Forum Jump

All times are GMT -7. The time now is 09:41 AM.


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