-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:
parent
8280bb0de0
commit
9d185ccc30
17 changed files with 182 additions and 81 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue