You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-29 16:16:38 +00:00
WIP visual scripting, not working yet but you can check out stuff
This commit is contained in:
@@ -64,6 +64,12 @@ void MethodBind::_set_const(bool p_const) {
|
||||
_const=p_const;
|
||||
}
|
||||
|
||||
void MethodBind::_set_returns(bool p_returns) {
|
||||
|
||||
_returns=p_returns;
|
||||
}
|
||||
|
||||
|
||||
StringName MethodBind::get_name() const {
|
||||
return name;
|
||||
}
|
||||
@@ -118,6 +124,7 @@ MethodBind::MethodBind() {
|
||||
argument_types=NULL;
|
||||
#endif
|
||||
_const=false;
|
||||
_returns=false;
|
||||
}
|
||||
|
||||
MethodBind::~MethodBind() {
|
||||
|
||||
Reference in New Issue
Block a user