
[MOD] Vibrant Wind
- Interkarma
- Posts: 6016
- Joined: Sun Mar 22, 2015 1:51 am
Re: [MOD] Vibrant Wind
This is really awesome! I can't wait to see how this looks once more 3D trees are in the world. Great work! 

-
- Posts: 3419
- Joined: Tue Aug 25, 2015 1:54 am
Re: [MOD] Vibrant Wind
Ooooh, very very good stuff 

Farewell DFU community! My time here has been a joy.
- TheLacus
- Posts: 1290
- Joined: Wed Sep 14, 2016 6:22 pm
- Contact:
Re: [MOD] Vibrant Wind
New version on first page 

Mod System documentation - Learn how to create mods for Daggerfall Unity.
Modder Discussion - General help and discussion for the mod system.
Github Issues - Submit a bug report for the game, including the mod system.
Modder Discussion - General help and discussion for the mod system.
Github Issues - Submit a bug report for the game, including the mod system.
- King of Worms
- Posts: 3735
- Joined: Mon Oct 17, 2016 11:18 pm
- Location: Scourg Barrow (CZ)
- Contact:
Re: [MOD] Vibrant Wind
Thanks! What is new if I may ask?
- TheLacus
- Posts: 1290
- Joined: Wed Sep 14, 2016 6:22 pm
- Contact:
Re: [MOD] Vibrant Wind
Nothing much, just upgraded compatibility and little tweaks.
Mod System documentation - Learn how to create mods for Daggerfall Unity.
Modder Discussion - General help and discussion for the mod system.
Github Issues - Submit a bug report for the game, including the mod system.
Modder Discussion - General help and discussion for the mod system.
Github Issues - Submit a bug report for the game, including the mod system.
- King of Worms
- Posts: 3735
- Joined: Mon Oct 17, 2016 11:18 pm
- Location: Scourg Barrow (CZ)
- Contact:
Re: [MOD] Vibrant Wind
Hi Lacus, one question
What are the various interpolation types?
Lerp, Sinerp, Coserp, Smoothstep
And what settings is considered a highest quality?
What are the various interpolation types?
Lerp, Sinerp, Coserp, Smoothstep
And what settings is considered a highest quality?
- pango
- Posts: 2764
- Joined: Wed Jul 18, 2018 6:14 pm
- Location: France
- Contact:
Re: [MOD] Vibrant Wind
It's not so much a question of quality than a question of different acceleration profiles;King of Worms wrote: ↑Thu Apr 11, 2019 1:25 pm What are the various interpolation types?
Lerp, Sinerp, Coserp, Smoothstep
And what settings is considered a highest quality?
- Lerp (short for linear interpolation): movement will go at the same speed from start to finish. it's the cheapest to compute;
- Sinerp; movement will slow down and the end ("ease out"), the position will change with time like a sin curve:
- Coserp: movement will start slow ("ease in"), the position will change with time like a cos curve:
- Smoothstep: both, movement will start slow, accelerate, then slow down near the end:
When a measure becomes a target, it ceases to be a good measure.
-- Charles Goodhart
-- Charles Goodhart
- King of Worms
- Posts: 3735
- Joined: Mon Oct 17, 2016 11:18 pm
- Location: Scourg Barrow (CZ)
- Contact:
Re: [MOD] Vibrant Wind
Thanks for the explanation!
Only sure thing is, that the grass should bend in a smoothstep motion, and thats how it is at default.
So I hope other values are set correctly as well, because I have no idea on how to set those.
In this case, I will have to believe that Lacus set everything right... considering he made this mod, I dont have a doubt about it
Only sure thing is, that the grass should bend in a smoothstep motion, and thats how it is at default.
So I hope other values are set correctly as well, because I have no idea on how to set those.
In this case, I will have to believe that Lacus set everything right... considering he made this mod, I dont have a doubt about it

-
- Posts: 92
- Joined: Tue Feb 12, 2019 12:55 am
Re: [MOD] Vibrant Wind
I believe this mod is failing at the line in the following line:
https://github.com/TheLacus/vibrantwind ... ion.cs#L36
... because Tuple is ambiguous. It's defined in both System as well as DaggerfallWorkshop.Utility. I believe this can be fixed with a "using Tuple=..." (but I'm no C# expert).
It's possible there's something wrong with the dependencies on my system since I actually couldn't find the Tuple definition in System using Visual Studio but I reinstalled Unity (2018.2.21f1) from scratch, installed only that mod (and it's RealGrass dependency) and got the same thing.
EDIT: Is it possible the version of C#/.Net that Unity 2018.2.21f1 (I picked this version because a clean git clone of the codebase, when loaded into Unity Hub, identifies the project as being that version even though some of the DFU documentation says 2018.2.11f1) isn't correct with a fresh install?
EDIT2: Okay, I'm totally baffled by this. Unity 2018.2.21f1, Player settings, Scripting Runtime Version, is .NET 3.5. System.Tuple wasn't introduced until .NET4.0. When I bring VisualStudio up I don't get the same conflict. I'm going to ask over on the Developer forum. My apologies if I wasted anyone's time here.
https://github.com/TheLacus/vibrantwind ... ion.cs#L36
... because Tuple is ambiguous. It's defined in both System as well as DaggerfallWorkshop.Utility. I believe this can be fixed with a "using Tuple=..." (but I'm no C# expert).
It's possible there's something wrong with the dependencies on my system since I actually couldn't find the Tuple definition in System using Visual Studio but I reinstalled Unity (2018.2.21f1) from scratch, installed only that mod (and it's RealGrass dependency) and got the same thing.
EDIT: Is it possible the version of C#/.Net that Unity 2018.2.21f1 (I picked this version because a clean git clone of the codebase, when loaded into Unity Hub, identifies the project as being that version even though some of the DFU documentation says 2018.2.11f1) isn't correct with a fresh install?
EDIT2: Okay, I'm totally baffled by this. Unity 2018.2.21f1, Player settings, Scripting Runtime Version, is .NET 3.5. System.Tuple wasn't introduced until .NET4.0. When I bring VisualStudio up I don't get the same conflict. I'm going to ask over on the Developer forum. My apologies if I wasted anyone's time here.
-
- Posts: 92
- Joined: Tue Feb 12, 2019 12:55 am
Re: [MOD] Vibrant Wind
If you have any interest in what was going on here, see this post. I think I figured it out. It's not your mod so feel free to skip it:
viewtopic.php?f=23&t=2742
viewtopic.php?f=23&t=2742