Updated canvas component page. |
Added a warning note. |
||
(2 intermediate revisions by the same user not shown) | |||
Line 8: | Line 8: | ||
<!--T:2--> | <!--T:2--> | ||
The '''Canvas''' component is the starting point for anything based on [[UIX]]. It provides the bounds of the UI and controls how users can interact with it. | |||
{{Note|When updating certain things on the canvas, you may need to duplicate the entire [[Slot]] to get the canvas (and any other UIX elements and slots under that canvas) to work again. The specifics for this canvas component that may need to force recalculation are as follows: | |||
* DefaultCulling: Especially for rendering the back side of the canvas.|warning}} | |||
<!--T:3--> | <!--T:3--> | ||
Line 40: | Line 42: | ||
<!--T:5--> | <!--T:5--> | ||
== Examples == | == Examples == | ||
Here is a video from [[User:ProbablePrime|ProbablePrime]]'s tutorial on canvases: | |||
<youtube>cLtD7uWrduI</youtube> | |||
<!--T:6--> | <!--T:6--> | ||
== Related Components == | == Related Components == | ||
When a child slot is created when under a [[Slot]] that has a canvas component, the new child slot will automatically create a [[Component:RectTransform|RectTransform]] component. | |||
</translate> | </translate> | ||
[[Category:Components{{#translation:}}|Canvas]] | [[Category:Components{{#translation:}}|Canvas]] | ||
[[Category:Components:UIX{{#translation:}}|Canvas]] | [[Category:Components:UIX{{#translation:}}|Canvas]] |
Latest revision as of 03:50, 28 July 2024
Component image
The Canvas component is the starting point for anything based on UIX. It provides the bounds of the UI and controls how users can interact with it.
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. |
Size
|
Float2 | The dimensions of the canvas. At normal scale, this is equivalent to meters |
EditModeOnly
|
Bool | This makes this component only editable in Edit Mode |
AcceptRemoteTouch
|
Bool | Makes the canvas accepts laser touches |
AcceptPhysicalTouch
|
Bool | Makes the canvas accepts direct touches |
AcceptExistingTouch
|
Bool | If this canvas is already being touched (physically or remotely), accept the input |
HighPriorityIntegration
|
Bool | Prioritizes the procedural meshes in the queue for this component |
IgnoreTouchesFromBehind
|
Bool | Makes the canvas ignore all touches from behind |
BlockAllInteractions
|
Bool | Prevents any interaction if enabled |
LaserPassThrough
|
Bool | Allows the laser to go through the canvas |
PixelScale
|
Float | Sets the pixel scale for this canvas and its contents |
UnitScale
|
Float | Scales the contents of this canvas, higher number makes the contents smaller |
_rootRect
|
RectTransform | Internal - The root rect of this canvas |
Collider
|
BoxCollider | The collider that receives touches from this canvas |
DefaultCulling
|
Culling | Culling for this canvas |
_colliderSize
|
field drive of Float3 | Internal - Takes in a box collider and uses it for the canvas |
_colliderOffset
|
field drive of Float3 | Internal - Offsets this box collider for this canvas |
StartingOffset
|
Int | The visibility order of rendering this canvas (lower number gets drawn over higher numbers) |
StartingMaskDepth
|
Int | Masking layer for the canvas |
Usage
This component is needed for UIX, without it, your other components that relay on UIX, canvas, elements, and rects will not work as expected. Using a canvas not only organizes your other components, it renders them and makes them usable and intractable.
Examples
Here is a video from ProbablePrime's tutorial on canvases:
Related Components
When a child slot is created when under a Slot that has a canvas component, the new child slot will automatically create a RectTransform component.