3D Space Example.as

From Organic Design wiki
Revision as of 11:14, 19 March 2006 by Nad (talk | contribs)
  1. include "Space.as"

// Instantiate a new 3D-space createEmptyMovieClip( 's', 1 ); initialiseSpace( s ); s._x = width/2; s._y = height/2;

// Create a ball attachMovie( 'ball', 'ball', 2 ); col = new Color( ball ); col.setTransform( { ra:0x40, ga:0x40, ba:0x80 } );

// Per frame function reduce() { s.frame(); }

// Test object s.create( [ 0, 0, , 'starBurst', 10, 0.25, 0,0,1000 ] );