WIP visual scripting, not working yet but you can check out stuff
This commit is contained in:
parent
221cb58382
commit
ad313097eb
79 changed files with 10473 additions and 1164 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue