Modules§
- “Runtime” here refers to the execution evironment of scripts. This might be the VM executing bytecode or the interpreter executing source code. The important thing is that there is only one runtime which is used to execute all scripts of a particular type or
context
. - Everything to do with the way scripts and their contexts are stored and handled.
Macros§
- Utility for quickly checking your type can be used as a return value in a script function
- Utility for quickly checking your type can be used as an argument in a script function
- Utility for quickly checking your function can be used as a script function
Structs§
- Bevy plugin enabling scripting within the bevy mod scripting framework
Enums§
- The enum
Either
with variantsLeft
andRight
is a general purpose sum type with two cases.