Cannot identify the scene. scene prop must be set when multiple scenes are defined.
See original GitHub issueThis error has started showing since a few days ago. I’m not sure if its an update to three or VueGL, but it breaks the render. I have set a scene=“name” prop on the renderer component, this did not resolve the issue.
<vgl-renderer ref="renderer" class="vgl-renderer" scene="s" camera="c" antialias> <vgl-scene ref="scene" name="s">
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Specifying the scenes your app supports - Apple Developer
Enable scene support in your project settings · Open your Xcode project. · Navigate to the General settings for your app target. ·...
Read more >Calling properties of objects in python only works for current ...
getSceneList returns a list of scenes that are currently running. Python is telling you that the hud variable is not defined, wich means...
Read more >Multi-Scene editing - Unity - Manual
Set Active Scene, This allows you to specify which scene new Game Objects are created/instantiated in. There must always be one scene marked...
Read more >A-Frame: React - Multiple Scenes | 8th Wall Playground
A React component for 8th Wall AFrame scenes. The scene HTML can be supplied, along with. // any components or primitives that should...
Read more >Radish Trial 6 Advanced Scenes - Nexus Mods Wiki
A cinematic scene should also have some visual structure to support ... with more complex scenes containing many actors and props (note the ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I saw your project. I found two unclosed tag,
vgl-scene
(row:22) andvgl-renderer
(row:29).This might cause this problem, because each scene and renderer is defined twice. First renderer defines a scene, so it doesn’t have problem. But second renderer does not define scenes, that why this error is occurring, I guess.
Please fix them and try again!
Anytime ^o^