Meet Udeshi

Results 19 comments of Meet Udeshi

I modified this change to use relative screen position instead of pixel offset. I am pasting a patch in case someone wants. https://gist.github.com/udiboy1209/9e3ab41723cfec6785bd2a679d8b08ec.patch

I have not tested without adding those options. How is that handled, can you show me? I will add it to the code.

@prikhi I have checked with a missing "window-position-x" conf and the latest commit works.

@saqib1707 they only consider staggered isometric for now, as mentioned in the doc. You can keep your calculations under that assumption. The orthogonal tiles staggered arrangement would require one extra...

`focus_entity` is restricted by `lock_scroll` [here](https://github.com/kivy/kivent/blob/2.2-dev/modules/core/kivent_core/systems/gameview.pyx#L168). Perhaps `lock_scroll` isnt being used correctly with `focus_entity` camera shifting.

@spinningD20 I had talked to @Kovak about this when I first started implementing layers in the maps module. Currently, the way to add z-index is to create multiple systems and...

IIRC cymunk contains the necessary source code from chipmunk so you don't need to install it separately. Try the install once after removing chipmunk. @tito could help you better though.

Can you check the log in JS console, and post it here. It looks like the playlist was init correctly, but didmt start playing.

Check [this function](https://github.com/udiboy1209/fast_playlist/blob/442af81ef7be090f5fde9fe42e265b96e1587347/js/main.js#L82) to fetch suggested videos. You may want to create a new module `suggestions.js` for this. For displaying, it is similar to the `` used for playlist and...

So currently in localStorage, a variable playlist is stored which is a list of snippets. You need to change it to a list of lists. I don't think explicitly storing...