TizzyT

coldboot.raf ESRC files -TizzyT

Aug 7th, 2017
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. coldboot.js
  2. var logo = new Actor("logo");
  3. function move(){
  4. logo.setPosition( <0.0, 0.0, 0.0,>, 5.0, INTERPOLATION_LINEAR );
  5. }
  6. System.timer[0] = new IntervalTimer(0.0, move);
  7.  
  8. coldboot.xml
  9. <?xml version="1.0" encoding="UTF-8"?>
  10. <raf>
  11. <model id="plane" file="plane.dae" />
  12. <actor id="logo" model="plane" material="mtrl_logo" scale="1.7778, 1.0, 1.0" position="0, 0.0, 0" />
  13. <material id="mtrl_logo" effect="pure_texture">
  14. <texture file="logo.dds" />
  15. </material>
  16. <camera id="camera" type="orthographic" yfov="0" ymag="2" znear="0.01" zfar="1000" position="0, 0, 2" direction="0, 0, -2" up="0, 1, 0"/>
  17. <script file="coldboot.js" />
  18. </raf>
Advertisement
Add Comment
Please, Sign In to add comment