Ginie

Results 53 comments of Ginie

Thank you for the report and i am sorry i missed the issue. Your provided IDL file is not available any more. Emscripten uses an old Web IDL version. This...

How do you compile that? Do you use webpack? if so, you probably need something like https://webpack.js.org/plugins/provide-plugin/#usage-jquery Otherwise you must ensure that jquery is globally available as jQuery or as...

A frame time of 3 means 3ms per frame which translates to 1000ms / 3ms = 333 frames per second. That is pretty fast. I suggest you limit the frameTime...

Did you also change the `frameTime` to something around `16`? If not, then this is to be expected.

i can not reproduce any issue. Can you show me your code or create a stackblitz example? here is what i play around with https://stackblitz.com/edit/js-ifxqyd?file=index.html you can increase the frame...

feel free to email me to the email address in my profile https://github.com/giniedp

yes, `resize` event is only triggered by the `window` object and not the html element. As it is for now there is no DSL to tell spritespin what target object...

to change the scroll axis you have to use the `orientation` option. For example ``` orientation: "vertical" ```

sorry, didn't pay close attention to the question. You want to use the scroll wheel. In that case, use the `'wheel'` plugin, see example here https://spritespin.ginie.eu/samples/#/input-wheel

you probably need to implement a custom input module that listens to the scroll event and updates the frame number based on the scroll position. That will for sure work...