| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- var game = Atomic.game;
- var node = self.node;
- RoboMan = self;
- self.animCtrl = node.createComponent("AnimationController");
- var idle = true;
- self.playAnimation = function(animation) {
- self.animCtrl.playExclusive("Models/" + animation, 0, true, 0.1);
- }
- function start() {
- var cache = game.cache;
- var model = node.createComponent("AnimatedModel");
- model.setModel(cache.getResource("Model", "Models/RoboMan.mdl"));
- model.setMaterial(cache.getResource("Material", "Materials/Robot_01_Diffuse.xml"));
- model.castShadows = true;
-
- self.animCtrl.playExclusive("Models/RoboMan_Normal_Idle.ani", 0, true, 0.0);
- game.cameraNode.position = [0, 6.0, -12];
- game.cameraNode.pitch(0);
-
- node.yaw(180);
-
- }
- // we need an update or it doesn't run the start, fix in JSVM
- function update(timeStep) {
- node.yaw(timeStep * 50);
-
- }
|