Hello. Tell me please. How do I find out if the Touch plugin exists in the project? And how to address him?
*answer* C3.Plugins.Touch
Develop games in your browser. Powerful, performant & highly capable.
function is_touch_exist(runtime) { try { runtime.touch; return true; } catch { return false; } }