
palanolho
Members-
Posts
60 -
Joined
-
Last visited
-
Days Won
2
palanolho last won the day on February 2 2023
palanolho had the most liked content!
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
palanolho's Achievements
Newbie (1/14)
5
Reputation
-
ParadoX21 reacted to a post in a topic: [EXAMPLE] PixiJS Slot machine
-
scarlosenrique reacted to a post in a topic: [EXAMPLE] PixiJS Slot machine
-
ivan.popelyshev reacted to a post in a topic: [help] Slot game - How to spin the reels
-
I did this with what I learned. Hope it helps
-
It worked!!! thanks a lot Is there an easier (or as easy) way to make a webserver other than using fenix?
-
I'm using this app to create webserver: http://fenixwebserver.com/ How do I do that ?
-
Ok, 2 things that happen: 1) I add to add the "pixi-spine.js.map" because it was complaining that could not find it and was not loading because of that (Is it supposed to work without it?) 2) i'm getting a pending loading the atlas file (?!) and because of that it's not loading. If I wait a long time, eventually it fails to load and I get error (see attached screens) Apart from the "...js.map" i'm using exactly what you sent me.
-
did you use the exact files I sent you with the correct version of the spine you mentioned? I downloaded the files from here has you requested: https://github.com/pixijs/pixi-spine/tree/pixi5-spine3.7/bin and fixed the "fighter_1" to "spite_char" (as you did) But I still get the "Cannot read property 'spineData' of undefined" error... why ... May I ask if you could zip your working version and send it to me so that I can try it? I'm starting to think it' my PC or something like that PS: really appreciate the help you are providing me and i'me happier to know that the files I have are still good and working. Apologies for any headache i'm giving you regarding this :S
-
its what is says on git, no ? I don't have access to a Spine key anymore. I'm looking around to see if there is anyone that could get the files and export them again in a newer version of Spine.
-
Will try that, thanks!
-
Yes but it was not me doing it and the person that did is no around anymore :S That's why i'm trying to see if someone else could give me a hand with it
-
Hi everyone, I don't have spine licence anymore and I'm trying to get 2 spine animated characters updated for spine 3.8+ Would anyone be able to help? I have the following files: animation.json animation.atlas animation.png Many thanks in advance.
-
Tries to switch to Spine 3.7.0 as you suggested (but still using PixiJS 5.3.3) but it seems it still doesn't work. Sometimes I get the same "spineData not found other times it takes a lot if time to load and end up with this error: GET http://localhost:8000/spine_animations/Chicken.atlas net::ERR_EMPTY_RESPONSE Resource.js:676 Tried to downgrade to PixiJS 4.4.5 (as suggested on the pixijs-spine 3.7) but i'm getting other errors Spine.ts:14 Uncaught TypeError: Cannot read property 'prototype' of undefined at Spine.ts:14 at Spine.ts:704 I tried all combinations for Pixi JS and Pixijs-spine and still the same thing Don't know what else to do
-
@ivan.popelyshev I did as you suggested and I see the the spike library being loaded and I can step into it. but I still get the same thing I'm attaching an example as you requested so that you can see the problem in action. Many thanks in advance. test-spine.zip
-
hey guys, I've recently updated to spine 3.8.0 and my spine work stopped to work and throes a "Cannot read property 'Spine' of undefined" This is what I have on my code: //... const pixiLoader = PIXI.Loader.shared; pixiLoader .add('spineChicken', 'images/spine_animations/Chicken.json'); //... var anination = new PIXI.spine.Spine(pixiLoader.resources.spineChicken.spineData); I 'm using pixi JS 5.2.0 I have the pixijs-spine.js v 3.8.0 included in my project (downloaded from https://github.com/pixijs/pixi-spine) The code was working before (I'm just trying to update the pixi JS and spine versions) I checked the resources after they load and I can see the "spineChicken" is in the data structure It looks identical to the examples on git and on the pixiJS website, so i0m understanding why this error Any ideas? Many thanks in advance.
-
worked, thanks ?
-
Hi everyone, I'm having a bit of a trouble to fins the URL for pixijs-spine v3.8 JS I was updating an old project I have that is using pixi 5.2.0 and I saw on https://github.com/pixijs/pixi-spine that I should be using spine version 3.8 with it I already search around but was not able to find the link to download the correct pixijs-spine.js or pixijs-spine.min.js or a link to a CDN I could use. Would anyone be able to help? Many thanks in advance.
-
ivan.popelyshev reacted to a post in a topic: [EXAMPLE] PixiJS Slot machine
-
Hi everyone, In order to learn a bit more about PixiJS I have developed a simple Slot Machine. The community has helped me fix problems and understand a bit better how things work, so I thought it would be a good thing to share with the community what I did (maybe more people are interested and would like to learn...) I tried to comment as much as I could (or thought it would make sense) not only for me but for anyone reading the code. I'm also outputting some stuff on the web console for reference. You will need a webserver to run this. I'm using Fenix Webserver (https://preview.fenixwebserver.com/) It's free, very basic and fits the purpose. Hope it's useful and you enjoy it. Regards. PixiJS-Slot-Game-Example-small.zip