update default 3d text 'perspective' value

This commit is contained in:
MihailRis 2024-11-23 16:20:07 +03:00
parent c8a08628be
commit 9ac22f86e1
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
display = "projected"
xray_opacity = 0.3
render_distance = 128
perspective = 0.0

View File

@ -20,9 +20,9 @@ struct NotePreset : public Serializable {
NoteDisplayMode displayMode = NoteDisplayMode::STATIC_BILLBOARD;
glm::vec4 color {1.0f};
float scale = 1.0f;
float renderDistance = 10.0f;
float renderDistance = 32.0f;
float xrayOpacity = 0.0f;
float perspective = 0.0f;
float perspective = 1.0f;
dv::value serialize() const override;
void deserialize(const dv::value& src) override;