Giter Site home page Giter Site logo

Comments (4)

GoodBoyDigital avatar GoodBoyDigital commented on April 28, 2024 1

Hey there! The issue is that the extensions are dynamically loaded when via autoDetectRenderer

the quick fix for now would be to do the following:

const renderer = await autoDetectRenderer({
    preference:'webgl'
})

we will look into adding a await createWebGLRenderer() and await createWebGPURenderer() functions that install all the plugins and things!

from pixijs.

bigtimebuddy avatar bigtimebuddy commented on April 28, 2024

Try including pixi.js/unsafe-eval. All packages are now shipped with v8.

from pixijs.

JetLua avatar JetLua commented on April 28, 2024

Try including pixi.js/unsafe-eval. All packages are now shipped with v8.

@bigtimebuddy Thank you, it's resolved.

When I run the following code in WeChat, I encounter an error.

const renderer = new PIXI.WebGLRenderer()

renderer.init({
  canvas,
  antialias: true,
  preferWebGLVersion: 1,
  backgroundColor: 0x171a24,
}).then(() => {
  const g = new PIXI.Graphics()

  g.fill(0xffc333)
  g.rect(0, 0, 100, 100)

  stage.addChild(g)

  renderer.render({container: stage})
})
Cannot read property 'addRenderable' of undefined

I did some basic research and found that the error stems from the following code snippet. Additionally, I added code locally to print variable information.

const rp = renderPipes as unknown as Record<string, RenderPipe>;
rp[container.renderPipeId].addRenderable(container as Renderable, instructionSet);

console.log(rp)
console.log(container.renderPipeId)

output:

image

I found that there is no graphics property in rp, so rp[container.renderPipeId] is undefined.

I'm not entirely sure if this is a situation unique to WeChat.

@GoodBoyDigital

from pixijs.

GoodBoyDigital avatar GoodBoyDigital commented on April 28, 2024

thanks for sharing! il take a look

from pixijs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.