Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 82 and Version 83 of content/LevelHowTo


Ignore:
Timestamp:
Dec 14, 2017, 4:55:20 PM (6 years ago)
Author:
kohlia
Comment:

Added a section for the ScriptableController

Legend:

Unmodified
Added
Removed
Modified
  • content/LevelHowTo

    v82 v83  
    828828  />
    829829}}}
     830
     831== Scripts ==
     832
     833You can create level scripts with the help of the ScriptableController. To do that, add an attribute to the {{{<Level>}}} tag called {{{script}}}:
     834
     835{{{ <Level script="scripts/myLevelScript.lua" ...> ... </Level> }}}
     836
     837Scripts are written in lua and you can register to events and control various things in orxonox with such a script. Please refer to the wiki page of the ScriptableController for more information.
    830838
    831839== Triggers && Events ==