Compare commits

..

7 Commits

Author SHA1 Message Date
ivan tkachenko 140244a6e2 Move NuGet.Config to the root
Otherwise it doesn't work in IntelliJ Rider
2025-07-11 22:35:32 +03:00
ivan tkachenko 32dfeb79ab Fix double triggering start of music
State transitions are only handled by changes to previousState on
per-frame basis, so only compare before/after of previousState.
2025-07-10 19:07:26 +03:00
ivan tkachenko 2457d3806c Rename State member to make it less confusing
JesterAI::previousState updates on the next frame after
currentBehaviourStateIndex changes, while current- & previous-
BehaviourStateIndex only change when SwitchToBehaviourState() is
requested.
2025-07-10 19:07:23 +03:00
ivan tkachenko 94cb3eecde Quick Fix: Object initialization can be simplified (IDE0017) 2025-07-10 19:07:01 +03:00
ivan tkachenko c8f1ba90e3 Consistently use equality operator for state indexes 2025-07-10 19:06:48 +03:00
ivan tkachenko eea59ca19f Auto format code 2025-07-10 19:06:44 +03:00
ivan tkachenko b9f6bcce9d Implement zip bundle as an after-build msbuild target, keep versions in sync 2025-07-10 19:06:33 +03:00
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>