-
Notifications
You must be signed in to change notification settings - Fork 4
SpriteController
Tempestissiman edited this page Jul 26, 2022
·
1 revision
Descriptions
Controller for a sprite object.
Remarks
Inherited from Controller
| Name | Type | Description |
|---|---|---|
isPersistent |
bool | Whether or not this controller is persistent |
active |
ValueChannel | Value 1 means object is enabled, 0 means object is disabled |
translationX |
ValueChannel | The sprite's position |
translationY |
ValueChannel | The sprite's position |
translationZ |
ValueChannel | The sprite's position |
rotationX |
ValueChannel | The sprite's rotation |
rotationY |
ValueChannel | The sprite's rotation |
rotationZ |
ValueChannel | The sprite's rotation |
scaleX |
ValueChannel | The sprite's scaling |
scaleY |
ValueChannel | The sprite's scaling |
scaleZ |
ValueChannel | The sprite's scaling |
colorR |
ValueChannel | The sprite's color |
colorG |
ValueChannel | The sprite's color |
colorB |
ValueChannel | The sprite's color |
colorA |
ValueChannel | The sprite's color |
colorH |
ValueChannel | Hue shift modification of the color |
colorS |
ValueChannel | Saturation modification of the color |
colorV |
ValueChannel | Brightness modification of the color |
textureOffsetX |
ValueChannel | The sprite's texture offset |
textureOffsetY |
ValueChannel | The sprite's texture offset |
textureScaleX |
ValueChannel | The sprite's texture scaling |
textureScaleY |
ValueChannel | The sprite's texture scaling |
layer |
StringChannel | The sprite's sorting layer name |
sort |
ValueChannel | The sprite's sorting order within a layer |
Remarks
textureOffsetX, textureOffsetY, textureScaleX, textureScaleY properties are shared among all objects using the same material instance. Use isNewMaterialInstance = true when creating them to avoid this.
Description
Create a copy of this controller, along with all of its chilren.
Parameters
| Name | Type | Description |
|---|---|---|
isNewMaterialInstance |
bool | Whether or not to create a new material instance |
Return types
Remarks
_
Descriptions
Return all controllers parented to this controller.
Parameters
_
Return types
Table of Controller
Remarks
_
Descriptions
Set the parent to another controller.
Parameters
| Name | Type | Description |
|---|---|---|
controller |
Controller | The controller to parent to |
Return types
nil
Remarks
_
Global
Channels
Controllers
- Controller
- CanvasController
- ImageController
- MeshController
- SpriteController
- TextController
- CameraController
- TrackController
- NoteGroupController
Post processing
- AutoExposureController
- BloomController
- ChromaticAberrationController
- ColorGradingController
- DepthOfFieldController
- GrainController
- LensDistortionController
- MotionBlurController
- VignetteController
Data types