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
🆙 added Backgrounds to the renderer
This commit is contained in:
@@ -144,6 +144,17 @@ export class UserDataManager implements IUserDataManager
|
||||
|
||||
userData.custom = custom;
|
||||
}
|
||||
|
||||
public updateBackground(roomIndex: number, background: number, stand: number, overlay: number): void
|
||||
{
|
||||
const userData = this.getUserDataByIndex(roomIndex);
|
||||
|
||||
if(!userData) return;
|
||||
|
||||
userData.background = background;
|
||||
userData.stand = stand;
|
||||
userData.overlay = overlay;
|
||||
}
|
||||
|
||||
public updateAchievementScore(roomIndex: number, score: number): void
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user