Elin Decompiled Documentation EA 23.346 Nightly
Loading...
Searching...
No Matches
GrowSystemRose.cs
Go to the documentation of this file.
2{
3 protected override bool UseGenericFirstStageTile => false;
4
5 public override int GetStageTile()
6 {
7 if (base.stage.idx == HarvestStage && source.alias == "roseflower")
8 {
9 return source._tiles[GrowSystem.cell.objDir % source._tiles.Length];
10 }
11 return base.GetStageTile();
12 }
13
14 public override bool CanRotate()
15 {
16 if (base.stage.idx == HarvestStage && source.alias == "roseflower")
17 {
18 return true;
19 }
20 return base.CanRotate();
21 }
22}
override int HarvestStage
override bool UseGenericFirstStageTile
override int GetStageTile()
override bool CanRotate()
SourceObj.Row source
Definition: GrowSystem.cs:45