SteamVR/Environments/Scripting: Difference between revisions
Cargo Cult (talk | contribs) m (marking stuff as new) |
mNo edit summary |
||
Line 4: | Line 4: | ||
== Getting Started == | == Getting Started == | ||
There are | There are three main ways of running scripts in Destinations. Game mode scripts are specific to the add-on, and are executed when a map in the add-on loads. Map scripts are executed when the specific map is loaded, and receive callbacks from the scripting system on certain events. Entity Scripts are set up on specific entities and execute when the entity is spawned. | ||
* [[Destinations/Scripting/Map_Scripts|Map Scripts]] | * [[Destinations/Scripting/Map_Scripts|Map Scripts]] | ||
* [[Entity_Scripts|Entity Scripts]] | * [[Entity_Scripts|Entity Scripts]] | ||
Line 18: | Line 18: | ||
== Reference == | == Reference == | ||
* [[Destinations/Scripting/API|Scripting API]] | * [[Destinations/Scripting/API|Scripting API]] | ||
* [[Source_2_Animation_System_VScript_API|Animation System API]] | |||
== '''<span style="color: red">New:</span>''' Examples == | == '''<span style="color: red">New:</span>''' Examples == |
Revision as of 05:44, 4 December 2016
Destinations includes the VScript scripting system with an extensive API, allowing many modifications and extensions to the game, including access of the VR motion controllers. Scripting in Destinations is done using the Lua language.
Many of the Dota 2 scripting features also apply to Destinations. Some of the links below may have inconsistencies when scripting for Destinations instead of Dota 2.
Getting Started
There are three main ways of running scripts in Destinations. Game mode scripts are specific to the add-on, and are executed when a map in the add-on loads. Map scripts are executed when the specific map is loaded, and receive callbacks from the scripting system on certain events. Entity Scripts are set up on specific entities and execute when the entity is spawned.
Common Techniques
Reference
New: Examples
New: Lua Resources
- Official Lua Website
- Programming in Lua - Good resource for learning Lua. If you're new to Lua or programming this is a good reference point to start from.
- Programming In Lua - Online - First edition of the above book is available online for free.