- This topic has 9 replies, 2 voices, and was last updated 5 years ago by
Yuri Kovelenov.
-
AuthorPosts
-
2020-03-23 at 11:06 am #24871
web
CustomerI having a hard time to implement a good working “camera switching” in my application.
I need to implement switching between different camera options triggered by the user:
– Camera with only orbit (limited angles) and zoom allowed no panning
– Camera with orbit (still limited angles), zoom and panning.
– “2D” locked camera. Just top viewing with no orbit, just zoom and panning.Because as far as I know its impossible at the moment to change camera settings at runtime. I created different cameras. I can switch between them, but I’m having a hard time to get a smooth transition between the cameras. I get strange jumpings, etc. I just want the change between the cameras become “invisible”.
I would also be okay with creating camera programtically, but I couldnt find any information in the developer api to set options/limits for a perspective camera.
Any ideas?
2020-03-23 at 2:28 pm #24900Yuri Kovelenov
StaffHi,
I get strange jumpings, etc. I just want the change between the cameras become “invisible”.
likely the problem is that when you switch between cameras, the current camera position does not fit in the limits imposed by the previous camera. A possible solution may be that you smoothly reset the camera to some predefined ‘safe’ position before switching it
2020-03-23 at 4:01 pm #24914web
CustomerHmm okay, will have a look.
Can you tell me if it is possible to create a camera directly in javascript with limits/restrictions?
2020-03-24 at 12:35 pm #24945Yuri Kovelenov
Staffyes, I think it should be possible with JavaScript
2020-03-24 at 2:11 pm #24960web
CustomerI already saw that entry, but I couldnt find description in the api to set camera limits.
2020-03-26 at 8:39 am #24987Yuri Kovelenov
StaffSorry, the right page is
https://www.soft8soft.com/docs/api/en/controls/OrbitControls.htmlyou should use app.controls to access these properties and methods.
2020-03-26 at 11:32 am #24993web
CustomerThx, this looks promising.
Do you have to create the camera object pure in javascript or can you get a scene camera and alter the settings?
2020-03-26 at 12:17 pm #24995Yuri Kovelenov
Staff2020-03-26 at 12:44 pm #24998web
CustomerGot it.
app.
didnt work for me in theprepareExternalInterface
function. Got undefined error for “enableZoom” for example. But implementing a function into the “visual_logic.js” viaappInstance.controls.enableZoom = false
did work for me.2020-03-26 at 12:46 pm #25000Yuri Kovelenov
Staffdidnt work for me in the prepareExternalInterface function
try making it inside runCode()
-
AuthorPosts
- You must be logged in to reply to this topic.