You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 15:36:18 +00:00
Move to Renderer V2
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
import { IActionDefinition, IActiveActionData } from '@nitrots/api';
|
||||
|
||||
export class ActiveActionData implements IActiveActionData
|
||||
{
|
||||
private _actionType: string;
|
||||
private _actionParameter: string;
|
||||
private _definition: IActionDefinition;
|
||||
private _startFrame: number;
|
||||
private _overridingAction: string;
|
||||
|
||||
constructor(action: string, parameter: string = '', startFrame: number = 0)
|
||||
{
|
||||
this._actionType = action || '';
|
||||
this._actionParameter = parameter || '';
|
||||
this._definition = null;
|
||||
this._startFrame = startFrame || 0;
|
||||
this._overridingAction = null;
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
this._actionType = null;
|
||||
this._actionParameter = null;
|
||||
this._definition = null;
|
||||
}
|
||||
|
||||
public get id(): string
|
||||
{
|
||||
if(!this._definition) return '';
|
||||
|
||||
return this._definition.id + '_' + this._actionParameter;
|
||||
}
|
||||
|
||||
public get actionType(): string
|
||||
{
|
||||
return this._actionType;
|
||||
}
|
||||
|
||||
public get actionParameter(): string
|
||||
{
|
||||
return this._actionParameter;
|
||||
}
|
||||
|
||||
public set actionParameter(parameter: string)
|
||||
{
|
||||
this._actionParameter = parameter;
|
||||
}
|
||||
|
||||
public get definition(): IActionDefinition
|
||||
{
|
||||
return this._definition;
|
||||
}
|
||||
|
||||
public set definition(definition: IActionDefinition)
|
||||
{
|
||||
this._definition = definition;
|
||||
}
|
||||
|
||||
public get startFrame(): number
|
||||
{
|
||||
return this._startFrame;
|
||||
}
|
||||
|
||||
public get overridingAction(): string
|
||||
{
|
||||
return this._overridingAction;
|
||||
}
|
||||
|
||||
public set overridingAction(action: string)
|
||||
{
|
||||
this._overridingAction = action;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user