stk-code_catmod/data/scripts/added_script.as
Sachith Hasaranga Seneviratne 5498084cde Bound Vec3 class to scripts
2014-06-07 08:07:18 +05:30

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);
}