mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-22 20:08:34 +01:00
0.18.1
This commit is contained in:
parent
3fd79cb9d8
commit
f293c56d72
2 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="TinyLifeApi" Version="0.18.0" />
|
<PackageReference Include="TinyLifeApi" Version="0.18.1" />
|
||||||
|
|
||||||
<PackageReference Include="ExtremelySimpleLogger" Version="1.2.4" />
|
<PackageReference Include="ExtremelySimpleLogger" Version="1.2.4" />
|
||||||
<PackageReference Include="MLEM.Data" Version="5.2.0-290" />
|
<PackageReference Include="MLEM.Data" Version="5.2.0-290" />
|
||||||
|
|
|
@ -25,16 +25,16 @@ namespace ExampleMod {
|
||||||
// but we don't need to do anything here for our action
|
// but we don't need to do anything here for our action
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void AndThenUpdate(GameTime time, TimeSpan passedInGame, GameSpeed speed) {
|
protected override void AndThenUpdate(GameTime time, TimeSpan passedInGame, float speedMultiplier) {
|
||||||
base.AndThenUpdate(time, passedInGame, speed);
|
base.AndThenUpdate(time, passedInGame, speedMultiplier);
|
||||||
// this method gets called every update frame while the action is active
|
// this method gets called every update frame while the action is active
|
||||||
|
|
||||||
// set our person to look like they're sitting on the ground
|
// set our person to look like they're sitting on the ground
|
||||||
this.Person.CurrentPose = Person.Pose.SittingGround;
|
this.Person.CurrentPose = Person.Pose.SittingGround;
|
||||||
|
|
||||||
// restore need and lower emotions
|
// restore need and lower emotions
|
||||||
this.Person.RestoreNeed(NeedType.Energy, 0.5F, speed);
|
this.Person.RestoreNeed(NeedType.Energy, 0.5F, speedMultiplier);
|
||||||
this.Person.LowerEmotion(EmotionType.Uncomfortable, 0.0001F, speed);
|
this.Person.LowerEmotion(EmotionType.Uncomfortable, 0.0001F, speedMultiplier);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override CompletionType AndThenIsCompleted() {
|
protected override CompletionType AndThenIsCompleted() {
|
||||||
|
|
Loading…
Reference in a new issue