mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
clean AvatarExpressionEnum
This commit is contained in:
parent
cb983ed710
commit
1a717cc1aa
@ -121,7 +121,7 @@ export class Matrix4x4
|
||||
return new Matrix4x4(this._data[0], this._data[3], this._data[6], this._data[1], this._data[4], this._data[7], this._data[2], this._data[5], this._data[8]);
|
||||
}
|
||||
|
||||
public _Str_1451(k: Matrix4x4): boolean
|
||||
public equals(k: Matrix4x4): boolean
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
@ -1,13 +1,13 @@
|
||||
export class AvatarExpressionEnum
|
||||
{
|
||||
public static NONE: AvatarExpressionEnum = new AvatarExpressionEnum(0);
|
||||
public static _Str_6268: AvatarExpressionEnum = new AvatarExpressionEnum(1);
|
||||
public static _Str_5579: AvatarExpressionEnum = new AvatarExpressionEnum(2);
|
||||
public static _Str_7336: AvatarExpressionEnum = new AvatarExpressionEnum(3);
|
||||
public static _Str_10353: AvatarExpressionEnum = new AvatarExpressionEnum(4);
|
||||
public static _Str_6989: AvatarExpressionEnum = new AvatarExpressionEnum(5);
|
||||
public static _Str_16682: AvatarExpressionEnum = new AvatarExpressionEnum(6);
|
||||
public static _Str_6325: AvatarExpressionEnum = new AvatarExpressionEnum(7);
|
||||
public static WAVE: AvatarExpressionEnum = new AvatarExpressionEnum(1);
|
||||
public static BLOW: AvatarExpressionEnum = new AvatarExpressionEnum(2);
|
||||
public static LAUGH: AvatarExpressionEnum = new AvatarExpressionEnum(3);
|
||||
public static CRY: AvatarExpressionEnum = new AvatarExpressionEnum(4);
|
||||
public static IDLE: AvatarExpressionEnum = new AvatarExpressionEnum(5);
|
||||
public static JUMP: AvatarExpressionEnum = new AvatarExpressionEnum(6);
|
||||
public static RESPECT: AvatarExpressionEnum = new AvatarExpressionEnum(7);
|
||||
|
||||
private _ordinal: number;
|
||||
|
||||
@ -16,12 +16,12 @@
|
||||
this._ordinal = k;
|
||||
}
|
||||
|
||||
public get _Str_6677(): number
|
||||
public get ordinal(): number
|
||||
{
|
||||
return this._ordinal;
|
||||
}
|
||||
|
||||
public _Str_1451(k: AvatarExpressionEnum): boolean
|
||||
public equals(k: AvatarExpressionEnum): boolean
|
||||
{
|
||||
return (k) && (k._ordinal == this._ordinal);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user