diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-04 16:39:42 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-04 16:39:42 +0100 |
commit | 0cdb530c18b37db41aa10eab8e9bd494fd76d6ca (patch) | |
tree | 89c1dc277858d055df70d4dad9caa3882afdc4b3 /editor/plugins/node_3d_editor_plugin.h | |
parent | 5eb22a317d3facd813cb1ebcd32f21e1d5437a38 (diff) | |
parent | 5591f289d75ffa8f39a946f1ffa64bd3b6b34975 (diff) | |
download | redot-engine-0cdb530c18b37db41aa10eab8e9bd494fd76d6ca.tar.gz |
Merge pull request #83895 from clayjohn/origin-lines
Use screen-aligned quads for origin lines to avoid issues on NVidia
Diffstat (limited to 'editor/plugins/node_3d_editor_plugin.h')
-rw-r--r-- | editor/plugins/node_3d_editor_plugin.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/plugins/node_3d_editor_plugin.h b/editor/plugins/node_3d_editor_plugin.h index 1ce09a2bcb..0f6ea71571 100644 --- a/editor/plugins/node_3d_editor_plugin.h +++ b/editor/plugins/node_3d_editor_plugin.h @@ -597,7 +597,8 @@ private: ToolMode tool_mode; - RID origin; + RID origin_mesh; + RID origin_multimesh; RID origin_instance; bool origin_enabled = false; RID grid[3]; @@ -631,7 +632,7 @@ private: RID indicators_instance; RID cursor_mesh; RID cursor_instance; - Ref<StandardMaterial3D> indicator_mat; + Ref<ShaderMaterial> origin_mat; Ref<ShaderMaterial> grid_mat[3]; Ref<StandardMaterial3D> cursor_material; |