You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
24 lines
497 B
TypeScript
24 lines
497 B
TypeScript
import { IRoomCameraWidgetEffect } from '@nitrots/api';
|
|
|
|
export class RoomCameraWidgetSelectedEffect
|
|
{
|
|
private _effect: IRoomCameraWidgetEffect;
|
|
private _strength: number;
|
|
|
|
constructor(effect: IRoomCameraWidgetEffect, strength: number)
|
|
{
|
|
this._effect = effect;
|
|
this._strength = strength;
|
|
}
|
|
|
|
public get effect(): IRoomCameraWidgetEffect
|
|
{
|
|
return this._effect;
|
|
}
|
|
|
|
public get strength(): number
|
|
{
|
|
return this._strength;
|
|
}
|
|
}
|