Coder Social home page Coder Social logo

Comments (12)

ivanpopelyshev avatar ivanpopelyshev commented on August 28, 2024 4

I don't know about ES6 target. My recommendation is not to use pixi and pixi-display as ES6 imports at all, only as global. If you know how to wrap it, modify "bin/pixi-display.js" the way you want it.

from layers.

lgraziani2712 avatar lgraziani2712 commented on August 28, 2024 3

Can you explain why it is recommended to use PIXI as a global variable?

Thank you!

By the way, I will try to make it work with es6 import/export :)

from layers.

hameleonick avatar hameleonick commented on August 28, 2024 3

Hi @lgraziani2712 ,

you could try
import * as PIXI from 'pixi.js';
import 'pixi-display';
for expample... it works for me

also I used http://scottmcdonnell.github.io/pixi-examples/index.html?s=display&f=zorder.js&title=Z-order&plugins=pixi-display example

from layers.

ivanpopelyshev avatar ivanpopelyshev commented on August 28, 2024 2

If you find the way it works, I'll try to modify TS source that way too.

from layers.

jlost avatar jlost commented on August 28, 2024

+1

from layers.

jlost avatar jlost commented on August 28, 2024

Doesn't it seem wrong that you should "have" to import PIXI as *, rather than just importing the pieces you need in that module?

Either way, I realized that I can achieve the same things I wanted to use this plugin for by just designing with more Containers, and gave up on trying to make it work with my setup.

from layers.

hameleonick avatar hameleonick commented on August 28, 2024

you also could do like this
import 'pixi-display';
import {DisplayGroup, DisplayList} from 'pixi.js';

from layers.

ByronHsu avatar ByronHsu commented on August 28, 2024

Just put bin in your repo. It works!

from layers.

yyman001 avatar yyman001 commented on August 28, 2024

you can require this js

let pixi_display = require('@/components/page/scene/pixi-layers')
//pixi-layers.js
(function (factory) {
  if ( typeof define === 'function' && define.amd ) {
    // AMD. Register as an anonymous module.
    define(['jquery'], factory);
  } else if (typeof exports === 'object') {
    // Node/CommonJS style for Browserify
    module.exports = factory;
  } else {
    // Browser globals
    factory(jQuery);
  }
}(function ($) {
  var pixi_display
 //some about pixi_display code
}))

from layers.

Scharnvirk avatar Scharnvirk commented on August 28, 2024

Simply import 'pixi-layers' and then new PIXI.display.Layer() works.

from layers.

connorjclark avatar connorjclark commented on August 28, 2024

FYI, you can do this to augment PIXI types with this lib's types too (requires typescript 3.8):

import * as PIXI from 'pixi.js';
import type {} from 'pixi-layers'; // typescript now knows about PIXI.display.Layer, etc. 

globalThis.PIXI = PIXI;
require('pixi-layers');

from layers.

pr4xx avatar pr4xx commented on August 28, 2024

I had some trouble setting up my dev environment. I am using webpack via Laravels mix configuration. The import instructions from the docs work for me excpet I get a lot of warning when compiling:
"export 'display' (imported as 'PIXI') was not found in 'pixi.js'
Anyone know how to avoid those warnings?

from layers.

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.