You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The struct RenderContext contains a boolean called sceneMode - this is most likely not enough here, as I currently implemented it in a way that you either want the transforms to be applied, or not - and I use this to determine either scene mode or edit mode.
If we now want this feature to become reality we would most likely have to
update the mouse tracing (SceneManager::mouseRayTrace) to take the world position of the node into account
maybe not making it a boolean but an enum with EditModeNoTransform, EditModeTransform, SceneMode
The text was updated successfully, but these errors were encountered:
The struct
RenderContext
contains a boolean calledsceneMode
- this is most likely not enough here, as I currently implemented it in a way that you either want the transforms to be applied, or not - and I use this to determine either scene mode or edit mode.If we now want this feature to become reality we would most likely have to
SceneManager::mouseRayTrace
) to take the world position of the node into accountEditModeNoTransform
,EditModeTransform
,SceneMode
The text was updated successfully, but these errors were encountered: