Skip to content

Commit

Permalink
ensure scene profile registeres its value types.
Browse files Browse the repository at this point in the history
  • Loading branch information
bhouston committed Jul 21, 2023
1 parent 60d1c97 commit db950f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/scene/src/registerSceneProfile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ export const makeSceneDependencies = ({ scene }: { scene: IScene }) => ({
});

export const registerSceneProfile = (registry: IRegistry): IRegistry => {
const values = { ...registry.values, ...getCoreValuesMap() };
const values = {
...registry.values,
...getCoreValuesMap(),
...getSceneValuesMap()
};
return {
values,
nodes: { ...registry.nodes, ...getSceneNodesMap() },
Expand Down

0 comments on commit db950f6

Please sign in to comment.