Skip to content

Api > PlayableDirector > SetReferenceValue()


PlayableDirector.SetReferenceValue(PropertyName id, Object value)⚓︎

Sets an ExposedReference value.

Parameters:⚓︎

Name Type Description
id PropertyName Identifier of the ExposedReference.
value Object The object to bind to set the reference value to.

Usage⚓︎

---@type PlayableDirector
local playabledirector;

---@type PropertyName
local id;

---@type Object
local value;


playabledirector.SetReferenceValue(id, value)