summaryrefslogtreecommitdiffstats
path: root/scene/3d/path_3d.h
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2021-01-29 19:55:54 -0500
committerAaron Franke <arnfranke@yahoo.com>2021-08-03 11:16:51 -0500
commit7cec3c2b95cef1274ffcc7f4e044ae86fb965f00 (patch)
tree4d32411222452536403a35b5d447b4014995be1d /scene/3d/path_3d.h
parent80fc90e82a57e8111cb7577b05bb2de021000e75 (diff)
downloadredot-engine-7cec3c2b95cef1274ffcc7f4e044ae86fb965f00.tar.gz
Use real_t in 3D nodes
Diffstat (limited to 'scene/3d/path_3d.h')
-rw-r--r--scene/3d/path_3d.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/scene/3d/path_3d.h b/scene/3d/path_3d.h
index 8545370a4a..1ffe291100 100644
--- a/scene/3d/path_3d.h
+++ b/scene/3d/path_3d.h
@@ -83,17 +83,17 @@ protected:
static void _bind_methods();
public:
- void set_offset(float p_offset);
- float get_offset() const;
+ void set_offset(real_t p_offset);
+ real_t get_offset() const;
- void set_h_offset(float p_h_offset);
- float get_h_offset() const;
+ void set_h_offset(real_t p_h_offset);
+ real_t get_h_offset() const;
- void set_v_offset(float p_v_offset);
- float get_v_offset() const;
+ void set_v_offset(real_t p_v_offset);
+ real_t get_v_offset() const;
- void set_unit_offset(float p_unit_offset);
- float get_unit_offset() const;
+ void set_unit_offset(real_t p_unit_offset);
+ real_t get_unit_offset() const;
void set_loop(bool p_loop);
bool has_loop() const;