NoveltyML reference > Objects > Group

<Group>
Inherits from <Object>.

Container for grouping objects together.


Inherited from <Object>

Attribute Description Type
name [Required] Unique name for this object String
position Position ("x,y") Vector2
pivot Pivot point ("x,y") Vector2
rotation Rotation in radians Float
scale Scale multiplier Float
size Size ("width, height") Vector2
visible Visibility Boolean
auto-size Automatic sizing based on parent's size ("width%, height%") Vector2
auto-position Automatic position based on parent's size ("x%, y%") Vector2

Remarks: auto-position and auto-size overrides position and size respectively.

Child tags Description Count
<Behaviour> Object behaviours 0 or more
<Meta> Meta information
1
<Object> Other objects 0 or more


NoveltyML sample
<Group name="My group">
	<Image name="My image" texture="My texture" />
	<Border name="My border" texture="My texture" />
</Group>
		


Back to top