Scripting/Squirrel/Functions/Object.Alpha
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
Object.Alpha;
Arguments
> Object - The object instance.
Example
This example will create a object and prints its current alpha on console.
function onScriptLoad()
{
myObject <- CreateObject( 334, 1, Vector( -2261.12, 753.12, 211.123 ),255 );
print(myObject.Alpha);
}