mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-11-22 12:03:28 +01:00
updated to 0.12.0
This commit is contained in:
parent
22d39dc8fe
commit
fe3a119a8b
2 changed files with 4 additions and 2 deletions
|
@ -41,7 +41,9 @@ namespace ExampleMod {
|
||||||
// adding custom clothing
|
// adding custom clothing
|
||||||
var darkShirt = new Clothes("ExampleMod.DarkShirt", ClothesLayer.Shirt,
|
var darkShirt = new Clothes("ExampleMod.DarkShirt", ClothesLayer.Shirt,
|
||||||
this.customClothes[0, 0], // the top left in-world region (the rest will be auto-gathered from the atlas)
|
this.customClothes[0, 0], // the top left in-world region (the rest will be auto-gathered from the atlas)
|
||||||
100, this.Icon, false, ColorScheme.WarmDark);
|
100, // the price
|
||||||
|
ClothesIntention.Everyday | ClothesIntention.Workout, // the clothes item's use cases
|
||||||
|
this.Icon, false, ColorScheme.WarmDark);
|
||||||
Clothes.Register(darkShirt);
|
Clothes.Register(darkShirt);
|
||||||
|
|
||||||
// adding an event subscription to people
|
// adding an event subscription to people
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="TinyLifeApi" Version="0.11.0" />
|
<PackageReference Include="TinyLifeApi" Version="0.12.0" />
|
||||||
|
|
||||||
<PackageReference Include="ExtremelySimpleLogger" Version="1.2.1" />
|
<PackageReference Include="ExtremelySimpleLogger" Version="1.2.1" />
|
||||||
<PackageReference Include="MLEM.Data" Version="4.3.0" />
|
<PackageReference Include="MLEM.Data" Version="4.3.0" />
|
||||||
|
|
Loading…
Reference in a new issue