Compare commits

...
Author SHA1 Message Date
adminandClaude Opus 4.5 c5aed72b06 Default Give Alms slider to 1000 (or max available)
Instead of starting at 0 food, default to 1000 or the maximum available
food, whichever is less. This is a more practical default for most uses.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 21:12:19 -08:00
adminandClaude Opus 4.5 0438ffea63 Tune weather effect materials for better visual quality
DroughtEffect:
- Increase texture tiling from 1x1 to 10x10 to reduce pixelation

FloodEffect:
- Increase texture tiling from 10x10 to 40x40 for finer detail
- Increase distortion strength from 0.02 to 0.1 for more visible waves
- Increase distortion speed from 2 to 5 for livelier animation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 21:02:28 -08:00
3 changed files with 7 additions and 6 deletions
@@ -47,8 +47,9 @@ namespace eagle {
AlmsCommand.AvailableHeroIds.Select(hid => _model.Heroes[hid]).ToList();
foodSlider.maxValue = AvailableFoodAmount;
foodSlider.value = 0;
foodGivenLabel.text = "0";
var defaultAmount = Math.Min(1000, AvailableFoodAmount);
foodSlider.value = defaultAmount;
foodGivenLabel.text = defaultAmount.ToString();
}
public void SelectedProvinceChanged(int newValue) {
@@ -49,7 +49,7 @@ Material:
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 29d8048ef082c49c98677228ff51f7bd, type: 3}
m_Scale: {x: 1, y: 1}
m_Scale: {x: 10, y: 10}
m_Offset: {x: 0, y: 0}
- _Mask:
m_Texture: {fileID: 0}
@@ -49,7 +49,7 @@ Material:
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 7ce4f51bbb08f43108219f9981e25ced, type: 3}
m_Scale: {x: 10, y: 10}
m_Scale: {x: 40, y: 40}
m_Offset: {x: 0, y: 0}
- _Mask:
m_Texture: {fileID: 0}
@@ -72,8 +72,8 @@ Material:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DistortionSpeed: 2
- _DistortionStrength: 0.02
- _DistortionSpeed: 5
- _DistortionStrength: 0.1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5