Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Oct 9, 2022
1 parent 82669b2 commit d9dcacc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export const initCustomizations = () => {
});
};

export const updateCustomization = (customizationId: string) => {
customizationFunctions[customizationId].update();
export const updateCustomization = (customization: TCustomization, customizationId: string) => {
customizationFunctions[customizationId].update(customization);
};

export const deleteCustomization = (customizationId: string) => {
Expand Down
4 changes: 2 additions & 2 deletions src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const initScene = (message: any) => {
initModeration();
}
if (message.features.entityPlacement) {
initImages(message.sceneData.images || message.sceneData.imageTextures);
initVideoScreens(message.sceneData.videoScreens || message.sceneData.videoSystems);
initImages(message.sceneData.imageTextures);
initVideoScreens(message.sceneData.videoSystems);
initNfts(message.sceneData.nfts);
}
// TODO: Implement dialog feature
Expand Down

0 comments on commit d9dcacc

Please sign in to comment.