Skip to main content

Animator.SendMessageUpwards(string methodName, any value = nil)

Calls the method named methodName on every LuaScript in this game object and on every ancestor of the behaviour.

Parameters:

NameTypeDescription
methodNamestringName of method to call.
valueanyOptional parameter value for the method.

Usage

---@type Animator
local animator;

---@type string
local methodName;

---@type any
local value;


animator.SendMessageUpwards(methodName, value)