arx-level-generator
Version:
A tool for creating Arx Fatalis maps
17 lines (16 loc) • 414 B
TypeScript
import { ScriptProperty } from '../ScriptProperty.js';
/**
* A ScriptProperty for setting transparency to an Entity.
* Value can be between 0 and 1 with 2 digits precision
*
* @extends ScriptProperty
*
* fully opaque = 1
* fully transparent = 0
*
* default value is 1
*/
export declare class Transparency extends ScriptProperty<number> {
toString(): string;
static get default(): Transparency;
}