Group

Summary

Modifies grouped items

Instance Properties

NameReturn TypeDescription

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

Class Methods

Group:New()

Creates and returns a new empty group

Returns: Group (The new group)

Example

myGroup = Group:New()

Instance Methods

group:Add(image)

Adds an image to this group moving it to the group's layer if necessary

Returns: nil

Parameters:

NameTypeDefaultDescription

image

The image to add

Example

myGroup:Add(myImage)

group:Add(video)

Adds a video to this group moving it to the group's layer if necessary

Returns: nil

Parameters:

NameTypeDefaultDescription

video

The video to add

Example

myGroup:Add(myVideo)

group:Add(model)

Adds a model to this group moving it to the group's layer if necessary

Returns: nil

Parameters:

NameTypeDefaultDescription

model

The model to add

Example

myGroup:Add(myModel)

group:Add(guide)

Adds a guide to this group moving it to the group's layer if necessary

Returns: nil

Parameters:

NameTypeDefaultDescription

guide

The guide to add

Example

myGroup:Add(myGuide)

group:Add(cameraPath)

Adds an image to this group moving it to the group's layer if necessary

Returns: nil

Parameters:

NameTypeDefaultDescription

cameraPath

The CameraPath to add

Example

myGroup:Add(myCameraPath)

group:Add(stroke)

Adds a stroke to this group moving it to the group's layer if necessary

Returns: nil

Parameters:

NameTypeDefaultDescription

stroke

The Stroke to add

Example

myGroup:Add(mystroke)

Last updated