Why the hell is my a global Pointer?????? My never was a global Pointer in c-script! My always was a local Pointer!
Can you tell me whats the sense behind making my to a global Pointer?
Just imagine this:
action rotate
{
while(1)
{
my.pan += 1*time_step;
wait(1);
}
}
If I would use my somewhere else, the my pointer would suddenly also point in the action to the other entity! Total unlogical if you ask me, because my should point to the entity which started the function!
I realy have no clue why you changed this, and please note such important changes in the manual!!!!
Dark_Samurai