/bin/CreationTemplate.ini

https://bitbucket.org/sonicbhoc/sweet-dreams-project-01 · INI · 407 lines · 276 code · 43 blank · 88 comment · 0 complexity · 29186e3afe8b1b4733631b01ca45670e MD5 · raw file

  1. ; Orx settings template / UTF-8 unicode support
  2. ; Sections are defined using [ ]
  3. ; Example:
  4. ; [My section]
  5. ; Everything after a ';' is considered as comment
  6. ; Key/value pairs are written like this:
  7. ; MyKey = MyValue
  8. ; Warning! If you want to add comments, use the ';' separator
  9. ; Example:
  10. ; MyKey = MyValue; Everything I wrote now is part of comments and not of the value
  11. ; If you want to use a ';' in a non-numerical value, use a block assignation delimited with '"'
  12. ; Example:
  13. ; MyKey = "MyValuePart1 ; MyValuePart2"
  14. ; Blocks are also useful for assigning multi-line values
  15. ; Example:
  16. ; MyKey = "This value
  17. ; spans
  18. ; on multiple lines"
  19. ; If you double the first '"', the value won't be considered as a block but as a regular one. It'll still contain a '"' at the start of the string value;
  20. ;Example:
  21. ; MyKey = ""MyQuotedValue"
  22. ; The string <"MyQuotedValue">, including the quotes, will be stored as a value
  23. ; All sections can inherit from any other one using the inheritance marker '@'
  24. ; Example:
  25. ; [Template]
  26. ; MyKey1 = MyValue1;
  27. ; MyKey2 = MyValue2;
  28. ; [Object@Template] <= This section will contains all values defined in the section 'Template';
  29. ; A parent can be removed when overriding a section and using no name after '@'.
  30. ; The implicit default parent section can be forcely ignored using the specific '@@' syntax
  31. ; Example:
  32. ; [Object] <= This section doesn't use any explicit parent but will use the implicit default parent if defined (see SettingsTemplate.ini, section [Config])
  33. ; [Object@Template] <= This section now uses 'Template' as an explicit parent section;
  34. ; [Object@] <= This section now has removed any explicit parent but is still using the implicit default parent if defined (see SettingsTemplate.ini, section [Config]))
  35. ; [Object@@] <= This section now has removed any parent and will not use the implicit default parent section either
  36. ; All values can be locally inherited from another section using the inheritance marker '@', with the optional use of '.' if we want to specify another key
  37. ; Example:
  38. ; [Template]
  39. ; MyKey = MyValue;
  40. ; MyOtherKey = MyOtherValue;
  41. ; [Object]
  42. ; MyKey = @Template; <= The value for 'MyKey' will be inherited from the one in the section 'Template', with the same key. This inheritance can be chained;
  43. ; MyLastKey = @Template.MyKey; <= The value for 'MyLastKey' will be inherited from the section 'Template' using the key 'MyKey'. This inheritance can also be chained;
  44. ; NB: MyOtherKey isn't inherited in this case.
  45. ; All values can implicitely refer to their own section using the inheritance marker '@' by itself. Its value will be dynamic and carry and inheritance to always result the name of the child section;
  46. ; Example:
  47. ; [Template]
  48. ; MyKey = @; <= The value for 'MyKey' will be 'Template', the name of this section
  49. ; MyOtherKey = @; <= Same here, the value for 'MyOtherKey' will also be the name of this section: 'Template'
  50. ; [Object@Template]
  51. ; MyNewKey = @; <= The value for 'MyNewKey' will be 'Object'
  52. ; MyKey = @Template; <= The value for 'MyKey' will be inherited from the section 'Template' using the same key and its value will be 'Object', ie. this section, not the parent one, 'Template'
  53. ; NB: MyOtherKey will use the section inheritance and its value will be 'Object', ie. this section, not the parent one, 'Template'
  54. ; If you want to load another file, you need to write this on an empty line:
  55. ; @path/to/MyOtherFile@
  56. ; Loading will happen instantly in the parsing, which can override previously defined values
  57. ; Also, values defined in the "included" file can be overridden afterward
  58. ; Lastly, after loading an "included" file, parsing will continue in the same section as before
  59. ; Example:
  60. ; [MySection]
  61. ; Key1 = Var1;
  62. ; @IncludeFile@
  63. ; Key2 = Var2; <= this will be added to the 'MySection' section
  64. ; FLOAT values are expressed with a '.' as decimal separator.
  65. ; INT values can be expressed using different prefixes (not case sensitive):
  66. ; - decimal without any prefix: 16
  67. ; - hexadecimal with prefix '0x': 0x10
  68. ; - octal with prefix '0': 020
  69. ; - binary with prefix '0b': 0b10000
  70. ; VECTOR values are expressed this way:
  71. ; MyVector = (1.0, 2.0, 3.0); NB: { } can be used in place of ( ). Components can be (x, y, z) most of the time, or (r, g, b)/(h, s, l)/(h, s, v) for color
  72. ; Wherever numerical values are used (Ints, Floats and Vectors), a random generated value can be obtained using the separator ~.
  73. ; Example:
  74. ; Value1 = 0.5 ~ 1.0;
  75. ; Value2 = (0.0, 0.0, 0.0) ~ (1.0, 1.0, 1.0);
  76. ; You can also specify lists of values using the separator #.
  77. ; The default behavior will be to select randomly a value from a list *EXCEPT* if a list item index is provided in the code.
  78. ; For all properties defined in this template, values will be taken randomly if a list is provided for any field that doesn't explicitely accept one.
  79. ; Lists can contain random values.
  80. ; Example:
  81. ; Key1 = Var1 # Var2 # RandVar3 ~ RandVar4 # Var5;
  82. ; Lists can span multiple lines when using # at the end of the line (line ending comments are allowed).
  83. ; If you want to define an empty element at the end of a list, use ##
  84. ; Example:
  85. ; Key2 = Var1 # Var2 #
  86. ; Var3 #; This list still continues on next line and this comment is valid.
  87. ; Var4 ; This list is now complete and contains 4 elements.
  88. ; Key3 = Var1 # Var2 ##; This list will not span on the next line but will contain a 3rd (and last) empty element.
  89. [ObjectTemplate]
  90. Graphic = GraphicTemplate;
  91. AnimationSet = AnimationSetTemplate;
  92. AnimationFrequency = [Float];
  93. Body = BodyTemplate;
  94. Clock = ClockTemplate; NB: If no clock is specified the main clock (core) will be used for update calculations;
  95. LifeTime = [Float]; NB: If not defined or negative, infinite life is granted;
  96. Color = [Vector]; NB: Values are RGB from 0 to 255;
  97. RGB = [Vector]; NB: Values are RGB from 0.0 to 1.0; Will be used only if Color isn't defined;
  98. HSL = [Vector]; NB: Values are HSL from 0.0 to 1.0; Will be used only if Color and RGB aren't defined;
  99. HSV = [Vector]; NB: Values are HSV from 0.0 to 1.0; Will be used only if Color, RGB and HSL aren't defined;
  100. Alpha = [Float];
  101. AutoScroll = x|y|both;
  102. Flip = x|y|both; NB: Flipping only affects the visual. Properties like physics body won't be affected;
  103. DepthScale = true|false;
  104. Position = [Vector]; NB: If objects has a valid parent and use its space, this value will be considered in parent's space, ie. [0-1] defines parent size on each axis;
  105. Speed = [Vector];
  106. UseRelativeSpeed = true|false; NB: If true, speed will be applied relatively to current object rotation & scale;
  107. Rotation = [Float]; NB: Angle in degrees around z axis;
  108. AngularVelocity = [Float]; NB: Velocity in degrees/second around z axis;
  109. Scale = [Vector]|[Float]; NB: z is ignored for 2D objects. If it has a valid parent and use its space, this value will be considered in parent's space, ie. [0-1] defines parent size on each axis;
  110. Smoothing = true|false; NB: no value will defaults to the global display settings;
  111. BlendMode = alpha|multiply|add|none; NB: Default value is alpha;
  112. Repeat = [Vector]; NB: z is ignored and other values must be strictly positive. This will be ignored for text objects;
  113. FXList = FXTemplate1 # FXTemplate2 # ...; NB: FX will be played immediately. Up to 4 FXs can be defined;
  114. FXDelayList = [Float] # [Float] # ...; NB: Delays (in seconds, defaulting to 0) that will be applied to corresponding FXs from the FXList;
  115. SoundList = SoundTemplate1 # SoundTemplate2 # ...; NB: FX will be played immediately. Up to 4 sounds can be defined;
  116. ShaderList = ShaderTemplate1 # ShaderTemplate2 # ...; NB: Shader will be activated immediately. Up to 4 shaders can be defined;
  117. TrackList = TimeLineTrackTemplate1 # TimeLineTrackTemplate2 # ...; NB: Timeline tracks will be played immediately. Up to 16 timeline tracks can be defined;
  118. Spawner = SpawnerTemplate;
  119. ChildList = ObjectTemplate1 # ObjectTemplate2 # ...; NB: Children will get deleted automatically when the current object will be deleted;
  120. ChildJointList = JointTemplate1 # JointTemplate2 # ...; NB: Indices match those of the ChildList;
  121. ParentCamera = CameraTemplate; NB: This will set the object as a child of the specified camera. Ex: Allows easy creation of UI objects;
  122. UseParentSpace = true|false|both|position|scale|none; NB: If set to true/both and has a valid parent, its position and scale will be considered in parent's space, ie. [0-1] defines parent size on each axis. It can be applied individually to only position or scale. Defaults to true/both;
  123. [GraphicTemplate]
  124. Texture = path/to/ImageFile.ext; NB: If provided, text data will be ignored. If the value is 'pixel', a 1x1 white bitmap with full opacity will be used.
  125. TextureOrigin = [Vector]; NB: Top left corner, z is ignored. This will be ignored for text data;
  126. TextureSize = [Vector]; NB: Texture size, z is ignored. This will be ignored for text data;
  127. Text = TextTemplate; NB: Will be ignored if a valid texture is provided;
  128. Pivot = center(+truncate|round)|left|right|top|bottom|[Vector]; NB: Truncate and round will adjust pivot values if they are not integers; z is ignored for 2D graphics;
  129. Repeat = [Vector]; NB: z is ignored and other values must be strictly positive. This will be ignored for text data;
  130. Flip = x|y|both;
  131. Color = [Vector]; NB: Values are RGB from 0 to 255;
  132. RGB = [Vector]; NB: Values are RGB from 0.0 to 1.0; Will be used only if Color isn't defined;
  133. HSL = [Vector]; NB: Values are HSL from 0.0 to 1.0; Will be used only if Color and RGB aren't defined;
  134. HSV = [Vector]; NB: Values are HSV from 0.0 to 1.0; Will be used only if Color, RGB and HSL aren't defined;
  135. Alpha = [Float];
  136. BlendMode = alpha|multiply|add|none; NB: Default value is none;
  137. Smoothing = true|false; NB: no value will defaults to the object settings. This will be ignored for text data;
  138. [TextTemplate]
  139. String = "string to display"; NB: If this string begins with the character '$', it will be used as a locale key instead of as a plain text. It will then be automatically updated upon a new language selection;
  140. Font = FontTemplate; NB: If none is provided, orx's default font will be used; If it begins with the character '$', it will be used as a locale key instead of as a plain section name. It will then be automatically updated upon a new language selection;
  141. [FontTemplate]
  142. Texture = path/to/ImageFile.ext;
  143. TextureCorner = [Vector]; NB: Top left corner, z is ignored; Defaults to (0, 0, 0);
  144. TextureSize = [Vector]; NB: Texture size for the character definition area, z is ignored; Defaults to texture's width & height;
  145. CharacterList = "ordered list of character"; NB: All characters with a glyph in the texture file have to be specified in order of appearance; Supports ANSI or UTF-8 strings (*NOT* ISO-Latin-1!)
  146. CharacterSize = [Vector]; NB: If defined, CharacterHeight & CharacterWidthList will be ignored. z value is ignored;
  147. CharacterHeight = [Float]; NB: This is only used for non-monospaced fonts, ie. when CharacterSize isn't defined;
  148. CharacterWidthList = [Float] # [Float] # ...; NB: This is only used for non-monospaced fonts, ie. when CharacterSize isn't defined. There should be exactly one value per character defined in CharacterList;
  149. CharacterSpacing = [Vector]; NB: Empty space between characters, z is ignored. Defaults to (0, 0, 0);
  150. [BodyTemplate]
  151. Inertia = [Float];
  152. Mass = [Float];
  153. LinearDamping = [Float];
  154. AngularDamping = [Float];
  155. FixedRotation = true|false;
  156. HighSpeed = true|false;
  157. Dynamic = true|false;
  158. CustomGravity = [Vector]; NB: If none is provided, world's gravity will be applied to the body;
  159. AllowSleep = true|false; NB: Defaults to true;
  160. AllowGroundSliding = true|false;
  161. AllowMoving = true|false; NB: This is only used by static bodies. If set to true, the static body can be moved via its speed/angular velocity accessors. Defaults to true;
  162. PartList = BodyPartTemplate1 # BodyPartTemplate2 # ...;
  163. [BodyPartSphereTemplate]
  164. Type = sphere;
  165. Center = [Vector]|full;
  166. Radius = [Float]|full;
  167. Friction = [Float];
  168. Restitution = [Float];
  169. Density = [Float];
  170. SelfFlags = flags;
  171. CheckMask = flags;
  172. Solid = true|false;
  173. [BodyPartBoxTemplate]
  174. Type = box;
  175. TopLeft = [Vector]|full;
  176. BottomRight = [Vector]|full;
  177. Friction = [Float];
  178. Restitution = [Float];
  179. Density = [Float];
  180. SelfFlags = flags;
  181. CheckMask = flags;
  182. Solid = true|false;
  183. [BodyPartMeshTemplate]
  184. Type = mesh;
  185. VertexList = [Vector] # [Vector] # ...; NB: There is a maximum of 8 vertices and they *HAVE* to be entered clockwise;
  186. Friction = [Float];
  187. Restitution = [Float];
  188. Density = [Float];
  189. SelfFlags = flags;
  190. CheckMask = flags;
  191. Solid = true|false;
  192. [RevoluteJoint]
  193. Type = revolute;
  194. ParentAnchor = [Vector]; NB: In local parent's space;
  195. ChildAnchor = [Vector]; NB: In local child's space;
  196. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  197. Rotation = [Float]; NB: Default rotation between parent and child bodies, in degrees. If none is provided, the current rotation difference between both bodies will be used;
  198. MinRotation = [Float]; NB: Only used if MaxRotation is also defined;
  199. MaxRotation = [Float]; NB: Only used if MinRotation is also defined;
  200. MotorSpeed = [Float]; NB: Only used if MaxMotorTorque is also defined. In degrees / seconds;
  201. MaxMotorTorque = [Float]; NB: Only used if MotorSpeed is also defined;
  202. [PrismaticJoint]
  203. Type = prismatic;
  204. ParentAnchor = [Vector]; NB: In local parent's space;
  205. ChildAnchor = [Vector]; NB: In local child's space;
  206. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  207. Rotation = [Float]; NB: Default rotation between parent and child bodies, in degrees. If none is provided, the current rotation difference between both bodies will be used;
  208. TranslationAxis = [Vector]; NB: Should be normalized;
  209. MinTranslation = [Float]; NB: In meters; Only used if MaxTranslation is also defined;
  210. MaxTranslation = [Float]; NB: In meters; Only used if MinTranslation is also defined;
  211. MotorSpeed = [Float]; NB: Only used if MaxMotorForce is also defined. In meters / seconds;
  212. MaxMotorForce = [Float]; NB: Only used if MotorSpeed is also defined;
  213. [SpringJoint]
  214. Type = spring;
  215. ParentAnchor = [Vector]; NB: In local parent's space;
  216. ChildAnchor = [Vector]; NB: In local child's space;
  217. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  218. Length = [Float]; NB: In meters. If not defined, the current distance between parent and child bodies will be used;
  219. Frequency = [Float]; NB: In hertz;
  220. Damping = [Float]; NB: 0 for no damping, 1 for max damping;
  221. [RopeJoint]
  222. Type = rope;
  223. ParentAnchor = [Vector]; NB: In local parent's space;
  224. ChildAnchor = [Vector]; NB: In local child's space;
  225. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  226. Length = [Float]; NB: In meters. If not defined, the current distance between parent and child bodies will be used;
  227. [PulleyJoint]
  228. Type = pulley;
  229. ParentAnchor = [Vector]; NB: In local parent's space;
  230. ChildAnchor = [Vector]; NB: In local child's space;
  231. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  232. ParentGroundAnchor = [Vector];
  233. ChildGroundAnchor = [Vector];
  234. ParentLength = [Float]; NB: In meters. If not defined, the current distance between parent and its ground anchor will be used;
  235. MaxParentLength = [Float]; NB: In meters. If not defined ParentLength + LengthRatio * ChildLength will be used;
  236. ChildLength = [Float]; NB: In meters. If not defined, the current distance between child and its ground anchor will be used;
  237. MaxChildLength = [Float]; NB: In meters. If not defined ParentLength + LengthRatio * ChildLength will be used;
  238. LengthRatio = [Float];
  239. [SuspensionJoint]
  240. Type = suspension;
  241. ParentAnchor = [Vector]; NB: In local parent's space;
  242. ChildAnchor = [Vector]; NB: In local child's space;
  243. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  244. TranslationAxis = [Vector]; NB: Should be normalized;
  245. MinTranslation = [Float]; NB: In meters; Only used if MaxTranslation is also defined;
  246. MaxTranslation = [Float]; NB: In meters; Only used if MinTranslation is also defined;
  247. MotorSpeed = [Float]; NB: Only used if MaxMotorForce is also defined. In meters / seconds;
  248. MaxMotorForce = [Float]; NB: Only used if MotorSpeed is also defined;
  249. [WeldJoint]
  250. Type = weld;
  251. ParentAnchor = [Vector]; NB: In local parent's space;
  252. ChildAnchor = [Vector]; NB: In local child's space;
  253. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  254. Rotation = [Float]; NB: Default rotation between parent and child bodies, in degrees. If none is provided, the current rotation difference between both bodies will be used;
  255. [FrictionJoint]
  256. Type = friction;
  257. ParentAnchor = [Vector]; NB: In local parent's space;
  258. ChildAnchor = [Vector]; NB: In local child's space;
  259. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  260. MaxForce = [Float];
  261. MaxTorque = [Float];
  262. [GearJoint]
  263. Type = gear;
  264. ParentAnchor = [Vector]; NB: In local parent's space;
  265. ChildAnchor = [Vector]; NB: In local child's space;
  266. Collide = true|false; NB: Allows collision between joint's parent and child bodies. Defaults to false;
  267. ParentJoint = [String]; NB: Should be a revolute or prismatic joint already existing on the parent.
  268. ChildJoint = [String]; NB: Should be a revolute or prismatic joint already existing on the child.
  269. JointRatio = [Float];
  270. [AnimationSetTemplate]
  271. Frequency = [Float];
  272. AnimationList = AnimationTemplate1 # AnimationTemplate2 # ...; NB: There can be up to 256 animations in one set;
  273. LinkList = LinkTemplate1 # LinkTemplate2 # ...; Example: LinkList = Jump2Land # Land2Idle;
  274. [LinkTemplate]
  275. Source = SourceAnimationTemplate;
  276. Destination = DestinationAnimationTemplate;
  277. Property = immediate|cleartarget;
  278. Priority = [Int]; NB: Value should be [0-15]. 0 being the lowest, 8 the default and 15 the highest; Example: LinkPriority1 = 10;
  279. [AnimationTemplate]
  280. DefaultKeyDuration = [Float];
  281. KeyData[Int] = GraphicTemplate; Example: KeyData1 = GraphicTemplate1;
  282. KeyDuration[Int] = [Float]; Example: KeyDuration1 = 0.1f;
  283. KeyEventName[Int] = [String]; NB: If defined a custom event will be sent when this key is played;
  284. KeyEventValue[Int] = [Float]; NB: This value is optional, its default value is 0.0;
  285. [ViewportTemplate]
  286. Texture = path/to/TextureFile.ext; NB: No texture will default to the screen one
  287. RelativePosition = left|right|top|bottom; Example: RelativePosition = top left;
  288. Position = [Vector]; NB: Position is in pixels and will be ignored if RelativePosition is specified
  289. RelativeSize = [Vector]; Example: RelativeSize = (1.0, 1.0, 0.0);
  290. Size = [Vector]; NB: Size is in pixels and will be ignored if RelativeSize is specified
  291. BackgroundColor = [Vector]; NB: If not set, the viewport won't erase any part of other viewports previously rendered this frame if there are overlaps;
  292. Camera = CameraTemplate;
  293. ShaderList = ShaderTemplate1 # ShaderTemplate2 # ...; NB: Shader will be activated immediately. Up to 4 shaders can be defined;
  294. [CameraTemplate]
  295. Zoom = [Float];
  296. Position = [Vector];
  297. Rotation = [Float];
  298. FrustumNear = [Float];
  299. FrustumFar = [Float];
  300. FrustumWidth = [Float];
  301. FrustumHeight = [Float];
  302. ParentCamera = CameraTemplate; NB: This will set this camera as a child of the specified camera;
  303. [ClockTemplate]
  304. Frequency = [Float]; NB: If not defined, 0.0 will be used meaning the clock will run as fast as possible;
  305. ModifierType = multiply|fixed|capped; NB: If none if given, no modifier will be used. If capped is specified, the modifier value will be used as a minimum frequency;
  306. ModifierValue = [Float];
  307. [SoundTemplate]
  308. Sound = path/to/SoundFile.ext; NB: If defined, Music will be ignored. Use it for short sound effects;
  309. Music = path/to/MusicFile.ext|empty; NB: If Sound is not defined, it'll be used to load a buffered stream of sound in memory. If empty is used, an empty stream will be generated;
  310. Loop = true|false;
  311. Pitch = [Float]; NB: The default pitch is 1.0, which correspond to the sound recording frequency;
  312. Volume = [Float]; NB: Volume is in [0.0-1.0]. Defaults to 1.0;
  313. Attenuation = [Float]; NB: Attenuation factor defaults to 1.0;
  314. RefDistance = [Float]; NB: Distance within which the sound's maximum volume will be perceived. Defaults to 1.0;
  315. KeepInCache = true|false; NB: If true, the sound data (ie. the sample itself) will always stay in cache. This value is ignored for a music. Defaults to false;
  316. [FXTemplate]
  317. SlotList = FXSlotTemplate1 # FXSlotTemplate2 # ...; NB: There is a maximum of 8 slots;
  318. Loop = true|false;
  319. KeepInCache = true|false; NB: If true, the FX will always stay in cache, even if no FX of this type is currently in use. Can save time but costs memory. Defaults to false;
  320. [FXSlotTemplate]
  321. Type = alpha|color|rgb|hsl|hsv|scale|rotation|position|speed|volume|pitch;
  322. StartTime = [Float]; NB: Start time in seconds;
  323. EndTime = [Float]; NB: End time in seconds;
  324. Period = [Float]; NB: Cycle period is in seconds. 0.0 means the whole length will be used as a period;
  325. Phase = [Float]; NB: Cycle phase is [0.0-1.0];
  326. Amplification = [Float]; NB: Curve amplification coef over time. < 1.0 => attenuation, = 1.0 => constant, > 1.0 => amplification. Defaults to 1.0;
  327. Accelereation = [Float]; NB: Curve acceleration over time. < 1.0 => deceleration, = 1.0 => constant, > 1.0 => acceleration. Defaults to 1.0;
  328. Curve = linear|triangle|square|sine|smooth|smoother;
  329. Pow = [Float]; NB: 1.0 is the default value and will result in a regular curve;
  330. Absolute = true|false; NB: The curve coefficient will be used as an absolute value. Defaults to false (=relative);
  331. UseRotation = true|false; NB: Only used for position & speed FX type, ignored otherwise. FX uses object's rotation to compute positions;
  332. UseScale = true|false; NB: Only used for position & speed FX type, ignored otherwise. FX uses object's scale to compute positions;
  333. StartValue = [Float]|[Vector]; NB: Vectors are only used for anisotropic scale, position, speed and color;
  334. EndValue = [Float]|[Vector]; NB: Vectors are only used for anisotropic scale, position, speed and color;
  335. [SpawnerTemplate]
  336. Object = ObjectTemplate;
  337. TotalObject = [Int]; NB: 0 or no value means unlimited total objects;
  338. ActiveObject = [Int]; NB: 0 or no value means unlimited active objects;
  339. Position = [Vector];
  340. Rotation = [Float]; NB: Angle in degrees around z axis;
  341. Scale = [Vector]|[Float]; NB: z is ignored for 2D objects;
  342. AutoReset = true|false; NB: If true, spawner will auto reset when emptied;
  343. UseAlpha = true|false; NB: Will only work if the spawner is linked to a parent object, from which it'll take the alpha;
  344. UseColor = true|false; NB: Will only work if the spawner is linked to a parent object, from which it'll take the color;
  345. UseRotation = true|false; NB: If true, spawner's rotation will be transmitted to the object. Defaults to true;
  346. UseScale = true|false; NB: If true, spawner's scale will be transmitted to the object. Defaults to true;
  347. WaveSize = Int; NB: Number of object to spawn in every wave. 0 or no value means no automated wave spawning;
  348. WaveDelay = Float; NB: Ellapsed time between two spawned waves, in seconds. 0 means all the objects spawned at once;
  349. ObjectSpeed = [Vector]; NB: If specified, this speed will be applied to spawned object;
  350. UseRelativeSpeed = true|false; NB: If true, speed will be applied relatively to current spawner rotation & scale. Defaults to false;
  351. UseSelfAsParent = true|false; NB: If set to true, the created object's parent will be the spawner. Defaults to false;
  352. CleanOnDelete = true|false; NB: If set to true, all the live spawned objects will be deleted when the spawner gets deleted. Defaults to false;
  353. [ShaderTemplate]
  354. Code = "Your shader code block"
  355. ParamList = ParamFloat # ParamTexture # ParamVector # ...; NB: Define all the parameters your shader code needs. Defined params then must have a default value to guess their type. If none is provided, type defaults to texture and will use shader's owner texture as value;
  356. ParamFloat = [Float]|time; NB: If a list is explicitely defined here, orx will create an array of floats of the same size as shader parameter; Use 'time' to get the 'active time' of the owner (works with objects only).
  357. ParamVector = [Vector]; NB: If a list is explicitely defined here, orx will create an array of vectors of the same size as shader parameter;
  358. ParamTexture = path/to/texture|screen; NB: If an invalid path is given, or nothing is specified, the owner's texture will be used by default. Use 'screen' to get the screen's content. If a list is explicitely defined here, orx will create an array of textures of the same size as shader parameter;
  359. UseCustomParam = true|false; NB: When set to true, an event will be sent to override params values at runtime. Defaults to true, ie. override at runtime;
  360. KeepInCache = true|false; NB: If true, the shader will always stay in cache, even if no shader of this type is currently in use. Can save time but costs memory. Defaults to false;
  361. [TimeLineTrackTemplate]
  362. [Float] = "Your timeline event text here" | "Your command"; NB: Float is a time in second (>= 0) after which this timeline event is going to be triggered; If the event is a valid command it'll get executed by the command module;
  363. Loop = true|false;
  364. KeepInCache = true|false; NB: If true, the timeline track will always stay in cache, even if no track of this type is currently in use. Can save time but costs memory. Defaults to false;