12 lines
229 B
ActionScript
12 lines
229 B
ActionScript
void onTrigger()
|
|
{
|
|
displayMessage("This trigger was added by another script");
|
|
jumpKartTo( 0, 67.90, 99.49 );
|
|
Vec3 a;
|
|
Vec3 b;
|
|
b=a;
|
|
Vec3 c = Vec3();
|
|
Vec3 d = Vec3(2,3,4);
|
|
printVec3(d);
|
|
}
|