🆙 added Backgrounds to the renderer

This commit is contained in:
duckietm
2025-05-20 14:16:05 +02:00
parent e0c0c06c99
commit 7c40e69c75
10 changed files with 157 additions and 3 deletions
+33
View File
@@ -9,6 +9,9 @@ export class RoomUserData implements IRoomUserData
private _figure: string = '';
private _custom: string = '';
private _activityPoints: number;
private _background: number;
private _stand: number;
private _overlay: number;
private _webID: number = 0;
private _groupID: number = 0;
private _groupStatus: number = 0;
@@ -45,6 +48,36 @@ export class RoomUserData implements IRoomUserData
{
this._activityPoints = k;
}
public get background(): number
{
return this._background;
}
public set background(k: number)
{
this._background = k;
}
public get stand(): number
{
return this._stand;
}
public set stand(k: number)
{
this._stand = k;
}
public get overlay(): number
{
return this._overlay;
}
public set overlay(k: number)
{
this._overlay = k;
}
public get name(): string
{