Changed Vector3.snap from fmod to stepify, which makes more sense, fixes #6399

This commit is contained in:
Juan Linietsky
2016-09-06 19:12:28 -03:00
parent 75b1b94905
commit 22f2894968
5 changed files with 637 additions and 509 deletions

View File

@@ -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{