Search the Community
Showing results for tags 'space'.
-
Hi @demostenes, I've reproduced this. However, it wasn't that often as you mentioned, but quite stable. I also observed that you're running main_sdl.exe instead of regular main.exe. Is this on purpose? We'll investigate the reasons for the crash and will try to fix it in the next update. Thanks.
- 5 replies
-
- geodetic
- cloud
-
(and 76 more)
Tagged with:
- geodetic
- cloud
- clouds
- ellipsoid
- radius
- vanish
- multi
- channel
- scrren
- space
- effects
- lighting
- ig
- cigi
- component
- c++
- dynamic
- instances
- sound sources
- culling
- physics
- objectterrainglobal
- render
- 2.7.2
- earth
- terrain
- cpp
- c
- performance
- ig
- qt
- crash
- start
- engine
- engine.projection
- const variable & id
- interactable
- vrplayer
- vrtemplate
- interaction disable
- nodereference
- landscape
- normal
- geo
- referenced
- landscape
- read-only
- load
- failed
- editor
- uniginescript
- particle
- system
- spawn
- disable
- emitter
- code
- c++ API 2.2.1
- Unigine
- Window
- active
- Window
- size
- resolution
- Splash
- 2.2
- ObjectMeshDynamic
- addColor
- PlayerSpectator
- setPhiAngle
- extern
- function
- vec3
- plugin
- video
- ogv
- gui
- stencil
-
Hi, we are planning to distribute our simulation to multiple computers, which screens are aligned so we can produce a panorma view of the scene with Unigine. Which post and screen space effects are we able to use? What values do we have to choose for static exposure to make the scene look more realistic? Is it better to change light source properties or exposure? We saw that exposure has a great impact on materials like clouds and the atmosphere. Are we able to use filmic camera effects? Do they look the same on different rendered parts of the scene? What r
-
Hi, I need the 2D screen Position of a 3D Node transformation. Can you write me a short code example with unigine matrices form the Player and Node and perspective division to get the NDC coordinates? auto proj = m_player->getProjection(); auto view = m_player->getTransform(); auto obj = instance->second->getNode()->getTransform(); auto projectedPosition = Unigine::Math::Mat4(proj)*view*obj*Unigine::Math::Vec4(0.0, 0.0, 0.0, 1.0); projectedPosition /= glm::abs(projectedPosition.w); x = (projectedPosition.x+1.0f)*0.5f * m_ungineAppHandle->getWidth(); y = (
-
Hello all, i'm working on a settingsscreen but have some "problems", my problem: I got a label, under this i got a WidgetSlider, but now i want to have a space between my label and my WidgetSlider, but as i looked between the functions i just found "SpaceY", the problem is here, that i space to the _TOP_ and the _BOT_ but i just want to space to the _BOT_ because else I detroy my layout. Are there any points to do? PS: I don't want to use the "setScreen X Y" Methode, because i want to do it as easy as possible... Hope you can help me, maybe it could be a new feature too =)