You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
-Merged the file server with the live editing and remote debug
-It is now really easy to deploy an android build with debug, and debug it
This commit is contained in:
@@ -34,7 +34,11 @@
|
||||
Error ScriptDebuggerRemote::connect_to_host(const String& p_host,uint16_t p_port) {
|
||||
|
||||
|
||||
IP_Address ip = IP::get_singleton()->resolve_hostname(p_host);
|
||||
IP_Address ip;
|
||||
if (p_host.is_valid_ip_address())
|
||||
ip=p_host;
|
||||
else
|
||||
ip = IP::get_singleton()->resolve_hostname(p_host);
|
||||
|
||||
|
||||
int port = p_port;
|
||||
|
||||
Reference in New Issue
Block a user