Reece Como

Results 50 comments of Reece Como

Just double-checking there's no PIXI-standard way to achieve something like this?: ```ts function replaceParentInPlace(target: Container, newParent: Container): void { const before = target.worldTransform.clone(); // move target.removeFromParent(); newParent.addChild(target); const after =...

Maybe this MoveToParent operation from Phaser Scene Editor: * [PhaserEditor2D/PhaserEditor2D-v3: source/editor/plugins/phasereditor2d.scene/src/ui/sceneobjects/object/properties/MoveToParentOperation.ts](https://github.com/PhaserEditor2D/PhaserEditor2D-v3/blob/9d9a633578162dc5d60c009d1bf00b49441609ed/source/editor/plugins/phasereditor2d.scene/src/ui/sceneobjects/object/properties/MoveToParentOperation.ts) I'm just on lunchbreak at work so I'll have a proper look tonight

Weirdest timing 😆 https://github.com/pixijs/pixijs/discussions/10201#discussioncomment-8430078

Fair point @gorkem - for context: - We've tried using a handful of YAML files — with varying levels of detail, variations of headers, etc. — none appear to parse....

Also: Example yaml file Here is an example config file for reference: ```yaml # yaml-language-server: $schema=_schema/configSchema.yml --- defaultLanguage: en languages: ar: debugName: Arabic localizedName: 'عربي' script: Arab direction: rtl da-DK:...

This might be tough to do elegantly within Geckos.io's existing abstraction/conventions. ### A: Keep current abstraction ```ts const channel = geckos({ /* ... */ }); channel.sendReliable('msg', { ...data }); ```...

Just an update @yandeu, our game has been running a hacked-together version of this for some time and it appears to work great. Previously on the geckos default implementation of...

You might want to check out some of the comments about docker and `node-datachannel` here → https://github.com/murat-dogan/node-datachannel/issues/53 After some digging, the author responded: > The problem is about the docker....

Have you checked out [Stunner](https://github.com/l7mp/stunner) ecosystem for deploying WebRTC apps with k8s? Edit: This is not 100% relevant to the above issue, just thought it was worth flagging.