Hundreds of features to explore
Games made in Construct
Your questions answered
Popular & trusted by schools and Universities world-wide
Construct 3 runs in the browser & works offline
Students do not need accounts with us
Our educational partners
Free education resources to use in the classroom
World class complete documentation
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
System-> "is on mobile device" Is not triggered on iOS 13.2.3(latest iOS)
If I Invert the condition the actions are executed, meaning that latest iOS is interpretted as not mobile
Tested with R275
Are you using an iPad?
If so, Safari on the new iPad OS deliberately pretends to be a macOS desktop device. As far as I'm aware there's no reliable way to identify it as an iPad.
yes, I am using an iPad
Develop games in your browser. Powerful, performant & highly capable.
How about this?:
stackoverflow.com/questions/58019463/how-to-detect-device-name-in-safari-on-ios-13-while-it-doesnt-show-the-correct
let isIOS = /iPad|iPhone|iPod/.test(navigator.platform) || navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)
let isIOS = /iPad|iPhone|iPod/.test(navigator.platform) ||
navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1)