mirror of
https://github.com/godotengine/godot.git
synced 2025-10-22 17:33:33 +00:00
Refactor RPCMode enum and checks
This commit is contained in:
parent
a71b0830ab
commit
9de4ffde61
25 changed files with 217 additions and 328 deletions
|
@ -93,7 +93,7 @@ bool VisualScriptFunction::_set(const StringName &p_name, const Variant &p_value
|
|||
}
|
||||
|
||||
if (p_name == "rpc/mode") {
|
||||
rpc_mode = ScriptInstance::RPCMode(int(p_value));
|
||||
rpc_mode = MultiplayerAPI::RPCMode(int(p_value));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -267,11 +267,11 @@ int VisualScriptFunction::get_argument_count() const {
|
|||
return arguments.size();
|
||||
}
|
||||
|
||||
void VisualScriptFunction::set_rpc_mode(ScriptInstance::RPCMode p_mode) {
|
||||
void VisualScriptFunction::set_rpc_mode(MultiplayerAPI::RPCMode p_mode) {
|
||||
rpc_mode = p_mode;
|
||||
}
|
||||
|
||||
ScriptInstance::RPCMode VisualScriptFunction::get_rpc_mode() const {
|
||||
MultiplayerAPI::RPCMode VisualScriptFunction::get_rpc_mode() const {
|
||||
return rpc_mode;
|
||||
}
|
||||
|
||||
|
@ -319,7 +319,7 @@ VisualScriptFunction::VisualScriptFunction() {
|
|||
stack_size = 256;
|
||||
stack_less = false;
|
||||
sequenced = true;
|
||||
rpc_mode = ScriptInstance::RPC_MODE_DISABLED;
|
||||
rpc_mode = MultiplayerAPI::RPC_MODE_DISABLED;
|
||||
}
|
||||
|
||||
void VisualScriptFunction::set_stack_less(bool p_enable) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue