Get#

ExportState.Get(name)#

アイテム内同期変数を取得します。

Parameters:

name (string) -- アイテム内同期変数の名前

Returns:

アイテム内同期変数の値

Return type:

nil|boolean|number|string|table

Example#

enabled という名前のアイテム内同期変数が true なら緑色、false なら赤色のマテリアルに設定します。

function updateAll()
    local enabled = vci.state.Get("enabled")
    if enabled then
        vci.assets.material.SetColor("Material1", Color.green)
    else
        vci.assets.material.SetColor("Material1", Color.red)
    end
end