Mark Lundin
Mark Lundin
Just for future reference. It seems that setting the touch-action on the dom element that captures the drag will fix this
Also, can it be renamed a Glamera?
Ok I can kind of replicate this. If you start with a small window with narrow/tall aspect ratio then maximise to a wide aspect ratio, the content zooms out. I...
Given the following example, it's not totally clear to me whether `bundlesIgnore` takes precedence or if it loads from the first bundle specified in the `bundleFilter`. ```javascript // pc.AssetRegistry assets.load(asset,...
twgsl.js looks like it's an UMD format, so it can just be loaded as a non module script. Worth noting that the import also uses `Promise.all`, which is used in...
Thanks for this @RobertUAggo. I've been able to test and replicate. Older versions of Chrome don't ignore the `imports()` during the pparsing stage and will throw a SyntaxError. We're not...
This is now fixed with #6080 and #6090. Closing
This PR seems to break the `swap` functionality somehow. In the following the `swap` method doesn't get called. ```javascript class Test extends pc.ScriptType { swap(old){ console.log('does not call') } }...
This may be related to the above, but I tried a `swap` in the current build, and it throws `Uncaught SyntaxError: Identifier 'Test' has already been declared`, I assume because...
One thing that feels a little strange, when you define class attribute properties it's not immediately clear what the default would be: ```javascript class MyClass { speed = 2 }...