-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perfect Vision is not going to be updated for Foundry V11 #334
Comments
Due to internal changes of Foundry in V11 Perfect Vision's lighting enhancements have been become increasingly difficult to support, which relied heavily on patching the private API. Therefore Perfect Vision is not going to be updated for V11. This is the end of Lighting Drawings unfortunately. For now at least. That doesn't mean though that all of Perfect Vision's features are dead. GM Vision lives on in the GM Vision module, which provides an even better version of GM Vision. Vision Limitation is going to be its own module, which I'll be able release this weekend hopefully. I hope that the discontinuation of the Lighting Drawings isn't preventing anyone from updating to V11. |
This is the worst v11 news I've heard yet 😢 |
Are there plans on the Daylight/Darkness color and Global Illumination configuration features in V11? Really loved using those :(. Not sure if those fall under what you mentioned prior. |
TBH knowing this module won't be updated to v11 definitely gives me pause about whether or not I should update to v11 myself. I've got probably 30ish maps I've used Lighting Drawings on. That said, prior to this module I basically just dropped light sources all around the map to simulate outdoor lighting that wouldn't reach indoors. It certainly is clunky and not nearly as ideal as what this module is capable of, but I'll survive. One thing I'd love to get a replacement module for, if at all possible, is for the "Reveal Fog of War" setting this module allowed. It's crazy to me that that setting isn't default to Foundry, and I'd largely consider this feature irreplaceable. Don't know if it's possible, but if it is and isn't too much trouble, any chance you could make something for that? |
The Daylight/Darkness Color and extended Global Illumination configuration in the Scene config could live on. Only the lighting configuration of drawings has become too difficult to support. Vision Delimiter are also something that doesn't have to die with Perfect Vision. But I'm limited on time, so I cannot make any promises that those features will be revived. Currently I have not plan to do so.
If you referring to the the Reveal Fog of War option in the Scene config, then there's a replacement. This macro reveals the fog in the current scene for all users. It is safe to use while other users are connected and doesn't require a reload in V11, which wasn't the case in V10. const scene = canvas.scene;
await scene.update({ fogExploration: false });
for (const user of game.users) {
const explorationData = {
scene: scene.id,
user: user.id,
explored: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+ip1sAAAAASUVORK5CYII="
};
const fogExplorationCls = getDocumentClass("FogExploration");
let exploration = await fogExplorationCls.get({ scene, user });
if (exploration) await exploration.update(explorationData, { diff: false });
else {
exploration = new fogExplorationCls(explorationData);
await fogExplorationCls.create(exploration.toJSON());
}
} |
Will Vision Limitation be a module or this feature will be discontinued as well? |
@luque-gh Not discontinued. It's coming. But I haven't had the time yet to get it ready for release. Maybe this weekend, but no promises. |
@dev7355608 Thank you for the Perfect Vision module you've provided to the community over the years. I'm sad to see it go, but pleased to hear that you've forked "GM vision" into it's own module (which I've already installed). I'm also pleased to hear that you'll also fork off some of the other capabilities (though i'm not sure I understand quite which ones). For my part there are 2 components that I've come to truly appreciate
the latter of which has been super nice for dealing with effects like fog clouds, and enabling more dynamic lighting in composite scenes, where there was an outside and inside portions (such as a a cave or house). I'm looking forward to seeing which parts of Perfect-Vision manage to live on, and will graciously install whatever components you can make available to the community as we all head into v11 For the time being, my migration to v11 is blocked by the system I use (PF1E) not yet having a compatible version. |
Hi, just wanted to +1 for vision limitation and range |
Is the vision limitation module still coming? It was a must-have, still don't know why it's still not integrated into foundry by default. Still, thanks for your hard work, even if the module development no longer works out for you. |
Thanks for the ride. I had much fun using Perfect Vision for mixed indoor + outdoor maps! 👍 |
Hello, thank you for the work you've done since the beginning of foundry. |
Thanks for the features provided before,and It seems that I must wait for the new solution to the mixed indoor + outdoor maps,neither as replacement or update. |
Well I find myself, like others, more than a little upset at the incompatibility that led us here. I'm sorry for the author's frustration with the changes that are making it so hard to keep Perfect vision working. Myself, I just did an update from 9 to 11 last night, and should have read up on the changes before I did it apparently. I've come to depend on perfect vision as the only realistic solution to the Inside/outside map problem (in WFRP there are a lot of urban map locations so this is a big deal) I'm going to try and revert to the last version of 10, at least until a good solution can be implemented. |
Exactly this, I will not switch to V11. I gave V11 a try, unfortunately I found out I heavily rely on these drawings. When V11 can finally do it or Perfect Vision is updated I'll give V11 another chance. |
Unfortunately I'm in the same boat. I've built out a number of full modules with indoor/outdoor scenes and we utilize the day/night cycle mod to shift the outside light as the time goes on. It's a great effect that none of my players want to lose. I refuse to update to v11 until we can get light drawings back, but they were showcasing v12 the other day and I'm starting to worry we're going to be left behind. :( |
Description
If possible please kindly update this module to be compatible to version 11 of Foundry VTT.
Context
No response
The text was updated successfully, but these errors were encountered: