Move to Renderer V2

This commit is contained in:
duckietm
2024-04-03 09:27:56 +02:00
parent 110c3ad393
commit b3134ce50b
4080 changed files with 115593 additions and 66375 deletions
@@ -0,0 +1,31 @@
import { IRoomObject } from '@nitrots/api';
import { RoomObjectEvent } from './RoomObjectEvent';
export class RoomObjectSamplePlaybackEvent extends RoomObjectEvent
{
public static ROOM_OBJECT_INITIALIZED: string = 'ROPSPE_ROOM_OBJECT_INITIALIZED';
public static ROOM_OBJECT_DISPOSED: string = 'ROPSPE_ROOM_OBJECT_DISPOSED';
public static PLAY_SAMPLE: string = 'ROPSPE_PLAY_SAMPLE';
public static CHANGE_PITCH: string = 'ROPSPE_CHANGE_PITCH';
private _sampleId: number;
private _pitch: number;
constructor(k: string, object: IRoomObject, sampleId: number, pitch: number = 1)
{
super(k, object);
this._sampleId = sampleId;
this._pitch = pitch;
}
public get sampleId(): number
{
return this._sampleId;
}
public get pitch(): number
{
return this._pitch;
}
}