Gamestudio Links
Zorro Links
Newest Posts
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
Trading Journey
by howardR. 04/28/24 09:55
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 972 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
my.pan possible for view entity? #271385
06/12/09 19:51
06/12/09 19:51

C
chris_oat
Unregistered
chris_oat
Unregistered
C



Hi all!

im so close to finish this, but i need again a lil help.
im my level i have a key with this action:
Code:
 
action red_key
{
if (event_type == event_scan)
{
if (lightonvar)
{
while (player == null) {wait (1);} 
key_show_on();
wait (-2);
ent_remove(me);
snd_play (gotkey_wav, 30, 0);
key2_dis.visible = off;
redkey_pan.visible = on;
got_red = 1;
}
else
.....


and i made and view entity of the key, wich i wanna display if the key is picked up:
Code:
 entity key2_dis
{ 
     type = <key2_display.mdl>; 
     pan = 0; 
     x = 50; // 250 quants ahead of the view 
     y = 0; 
     z = 0; 
}

function key_show_on() 
{ 
key2_dis.visible = on;
while (1)
{ 
my.pan += 3 * time_step;
wait (1);
} 
key2_dis.visible = off;
} 


so far so good, everything works fine, only wen i pick up the key, they key in the level rotates, but i want the key as view entity rotates. how can i do that?

Re: my.pan possible for view entity? [Re: ] #271439
06/13/09 06:25
06/13/09 06:25
Joined: Aug 2005
Posts: 1,558
HK
V
vlau Offline
Serious User
vlau  Offline
Serious User
V

Joined: Aug 2005
Posts: 1,558
HK
You need to specify key2_dis.pan += 3 * time_step;
in the while loop.

Re: my.pan possible for view entity? [Re: vlau] #271447
06/13/09 08:56
06/13/09 08:56

C
chris_oat
Unregistered
chris_oat
Unregistered
C



OMG, ur totally right!
and stupid as i am, i tried it like that b4, but i put:
key2_dis.my.pan += 3 * time_step; smile

Thank you vlau !!


Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1