summaryrefslogtreecommitdiffstats
path: root/editor/plugins/node_3d_editor_plugin.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-01-04 16:39:42 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-01-04 16:39:42 +0100
commit0cdb530c18b37db41aa10eab8e9bd494fd76d6ca (patch)
tree89c1dc277858d055df70d4dad9caa3882afdc4b3 /editor/plugins/node_3d_editor_plugin.h
parent5eb22a317d3facd813cb1ebcd32f21e1d5437a38 (diff)
parent5591f289d75ffa8f39a946f1ffa64bd3b6b34975 (diff)
downloadredot-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.h5
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;