Brian Zinn

Results 182 comments of Brian Zinn

I think it was you that had asked in the forum the same question. That seems to have stalled there after being assigned. I'll wait until that thread continues -...

There is an update in the forum. It's a bit bizarre the answer, if you ask me. Can you confirm it works and then if that's the solution we can...

ok - i'm probably just not recognizing those properties in the reconciler - to make a declarative version possible. I should maybe just assign all unrecognized props as a fallthrough....

Although, AbstractEngine does return a canvas: https://doc.babylonjs.com/typedoc/classes/BABYLON.AbstractEngine#getrenderingcanvas The constructor to engine can be also a context. https://github.com/BabylonJS/Babylon.js/blob/84580a00705d4513393988e3eb2cab0f2d9053b3/packages/dev/core/src/Engines/engine.ts#L363 I would say you are more correct though based on the name of...

I'll make that change in next couple of days. Thanks for the feedback.

it's kind of a known issue. it likely is a bug on the one hand. this will work: ```jsx ``` The "bug" is that the `updateUrl` isn't mapped properly -...

I wanted to add as well - what a declarative solution would look like. So, the `updateUrl` would be supplied when the texture is created, but then altered as a...

I agree with everything you said. `url` isn't a property that seems to do anything, but I would expect that as well: https://github.com/BabylonJS/Babylon.js/blob/master/packages/dev/core/src/Materials/Textures/texture.ts#L211 whereas the function actually does something: https://github.com/BabylonJS/Babylon.js/blob/master/packages/dev/core/src/Materials/Textures/texture.ts#L575...

I really appreciate you creating these issues. It's useful to reconsider some design decisions, especially ones that make the library harder to use than it needs to be. Hopefully I...

hi @trietng - that's because it's using `fromInstance`, which means that instead of asking `react-babylonjs` to instantiate a Texture class for you that you will instead be supplying your own...