mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +00:00
Changed Vector3.snap from fmod to stepify, which makes more sense, fixes #6399
This commit is contained in:
parent
78275aad87
commit
23ababdcd5
6 changed files with 640 additions and 516 deletions
|
|
@ -1417,7 +1417,8 @@ bool VisualScriptInstance::get(const StringName& p_name, Variant &r_ret) const {
|
|||
if (!E)
|
||||
return false;
|
||||
|
||||
return E->get();
|
||||
r_ret=E->get();
|
||||
return true;
|
||||
}
|
||||
void VisualScriptInstance::get_property_list(List<PropertyInfo> *p_properties) const{
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue