You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 23:46:19 +00:00
Move to Renderer V2
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
import { RoomObjectUpdateMessage } from './RoomObjectUpdateMessage';
|
||||
|
||||
export class ObjectRoomPlaneVisibilityUpdateMessage extends RoomObjectUpdateMessage
|
||||
{
|
||||
public static WALL_VISIBILITY: string = 'RORPVUM_WALL_VISIBILITY';
|
||||
public static FLOOR_VISIBILITY: string = 'RORPVUM_FLOOR_VISIBILITY';
|
||||
|
||||
private _type: string;
|
||||
private _visible: boolean;
|
||||
|
||||
constructor(type: string, visible: boolean)
|
||||
{
|
||||
super(null, null);
|
||||
|
||||
this._type = type;
|
||||
this._visible = visible;
|
||||
}
|
||||
|
||||
public get type(): string
|
||||
{
|
||||
return this._type;
|
||||
}
|
||||
|
||||
public get visible(): boolean
|
||||
{
|
||||
return this._visible;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user