UArNode.group constructor
UArNode.group({
- required String id,
- String? anchorId,
- String? parentId,
- UArVector3 position = UArVector3.zero,
- UArQuaternion rotation = UArQuaternion.identity,
- UArVector3 scale = UArVector3.one,
An empty transform used to move several children together.
Implementation
factory UArNode.group({
required String id,
String? anchorId,
String? parentId,
UArVector3 position = UArVector3.zero,
UArQuaternion rotation = UArQuaternion.identity,
UArVector3 scale = UArVector3.one,
}) => UArNode(id: id, type: UArNodeType.group, anchorId: anchorId, parentId: parentId, position: position, rotation: rotation, scale: scale, castShadow: false);