wiki.sine.space | sinespace

Difference between revisions of "Scripting/SGraphicRaycaster"

From wiki.sine.space
Jump to: navigation, search
(Created page with "=Members= {{ScriptFunction|SUIRaycastResult|Raycast|()|Perform the raycast against the list of graphics associated with the Canvas and returns first UI raycast result.|5=<pr...")
(No difference)

Revision as of 11:22, 24 September 2021

Members

Raycast

SUIRaycastResult Raycast ()

Perform the raycast against the list of graphics associated with the Canvas and returns first UI raycast result.

local trans = Space.Host.ExecutingObject
local canvas = Space.Host.GetReference("Canvas")
local gr = canvas.GraphicRaycaster
function Update()
    local raycast = gr.Raycast()
    Space.Log(raycast.ToString())
end
trans.OnUpdate(Update)


Properties

RenderOrderPriority

int RenderOrderPriority { get;set; }

Priority of the raycaster based upon render order.


Space.Host.ExecutingObject.GraphicRaycaster.RenderOrderPriority = 1



SortOrderPriority

int SortOrderPriority { get;set; }

Priority of the raycaster based upon sort order.


Space.Host.ExecutingObject.GraphicRaycaster.SortOrderPriority= 1