Cazka
Cazka
When I try to download an episode, I get the following error: ``` ./crunchy-cli download https://www.crunchyroll.com/de/watch/GJWU294XK/attack-on-titan-final-season-the-final-chapters-special-1 :: √ Logging in :: √ Parsed url 1 :: √ Loaded series information...
diep.io uses pow since 22.07.2020
we used the minimap viewport to find out the players fov. Other ways to find players fov: - size of a background tile - whenever a square is seen, use...
since they removed minimap viewport #64, it is not possible to determine the arena size anymore. Should diepAPI transition from canvas based to memory based api?
```js // entities will be empty here const entities = diepAPI.extensions.entityManager.entities; ``` ```js diepAPI.apis.game.on('frame', () =>{ // entities will not be empty here const entities = diepAPI.extensions.entityManager.entities; }); ```
We are using the variable `_window` instead of `window` to reference the global object. Using this one liner, we make sure that `_window` is referencing the real global object. `const...
**Why?** Useful when you want to detect changes in the entities. ```js entityManager.on('add', (entity) => { // do something... }); // events for removed entities is probably less important entityManager.on('remove',...
currently you have to manually copy the libary and place it in the template.user.js. Would be great if we could automate this process

Currently there are two overlays: - diepAPI.tools.overlay: this overlay is placed on top of everything - diepAPI.tools.backgroundOverlay: this overlay is placed behind gui & players/bullets Would be cool to have...