dev7355608
dev7355608
### What happened? Since I released Perfect Vision 4.0.0, which is only V10-compatible, the package updater fails to update Perfect Vision to the latest v9 version (3.9.15) for users on...
### What happened? Not a bug, but saving the fog spends roughly 2/3 of the time with unpremultiplying (`arrayPostDivide`). Because the fog texture is opaque, this is actually unnecessary. Also...
Also the wrap mode isn't successfully changed if the texture was already bound and isn't dirty: https://pixiplayground.com/#/edit/qKbwGLPkoY2VNAZc8Gr-a Here the wrap mode is changed: https://github.com/pixijs/pixijs/blob/28e6b2841a65837a5e2873a3d5a9c27cabbe795a/packages/graphics/src/GraphicsGeometry.ts#L393 But the `wrapMode` setter doesn't increase...
### Where did you find it, or where does it belong for requests? V10 API Documentation (https://foundryvtt.com/api/v10/) ### What page or file needs a look at? https://foundryvtt.com/api/v10/modules/hookEvents.html ### What core...
### What happened? Blinded token with the Tremorsense vision mode:  ### What ways of accessing Foundry can you encounter this issue in? - [ ] Native App (Electron) -...
### What happened? If the elevation is below the minimum, `mapElevationAlpha` needs to return a value less than 0.2 and greater than 0.15; `mapElevationAlpha` should never return values less than...
### What happened? Detection modes that use the default LOS test are not affected by this issue, because the LOS polygon is restricted to the scene rectangle if its origin...
### What happened?   This change does fix it: ```diff // Draw LOS mask - vision.los.drawShape(visionSource.los); + if (!visionSource.data.blinded) vision.los.drawShape(visionSource.los); ``` But would make attempts to create Blindsight that...
### What happened? Because the source is now updated with `recursive: false`, passing a diff to `_previewChanges` erases other flags that haven't been changed if at least one flag was....
### What happened? `Interface#drawOutline` draws a rectangle over the scene if not background image is set. ```js if ( displaySceneOutline ) outline.lineStyle({ alignment: 1, alpha: 0.25, color: 0x000000, join: PIXI.LINE_JOIN.BEVEL,...