Modifies grouped items
Name | Return Type | Description |
---|---|---|
images | ImageList Read-only | All the images in this group |
videos | VideoList Read-only | All the videos in this group |
models | ModelList Read-only | All the models in this group |
guides | GuideList Read-only | All the guides in this group |
cameraPaths | CameraPathList Read-only | All the camera paths in this group |
Creates and returns a new empty group
Returns: Group (The new group)
myGroup = Group:New()
Adds an image to this group moving it to the group's layer if necessary
Returns: nil
Parameters:
Name | Type | Default | Description |
---|---|---|---|
image | Image | The image to add |
myGroup:Add(myImage)
Adds a video to this group moving it to the group's layer if necessary
Returns: nil
Parameters:
Name | Type | Default | Description |
---|---|---|---|
video | Video | The video to add |
myGroup:Add(myVideo)
Adds a model to this group moving it to the group's layer if necessary
Returns: nil
Parameters:
Name | Type | Default | Description |
---|---|---|---|
model | Model | The model to add |
myGroup:Add(myModel)
Adds a guide to this group moving it to the group's layer if necessary
Returns: nil
Parameters:
Name | Type | Default | Description |
---|---|---|---|
guide | Guide | The guide to add |
myGroup:Add(myGuide)
Adds an image to this group moving it to the group's layer if necessary
Returns: nil
Parameters:
Name | Type | Default | Description |
---|---|---|---|
cameraPath | CameraPath | The CameraPath to add |
myGroup:Add(myCameraPath)
Adds a stroke to this group moving it to the group's layer if necessary
Returns: nil
Parameters:
Name | Type | Default | Description |
---|---|---|---|
stroke | Stroke | The Stroke to add |
myGroup:Add(mystroke)