diff --git a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coconut.ocd/Script.c b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coconut.ocd/Script.c index f56249188..f85efff66 100644 --- a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coconut.ocd/Script.c +++ b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coconut.ocd/Script.c @@ -45,7 +45,7 @@ public func GetTreetopPosition(pos) private func Definition(def) { - SetProperty("PictureTransformation", Trans_Translate(0, 0, 20000), def); + SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-27000, -000, 22000), Trans_Rotate(40,0,0,1), Trans_Rotate(-10,1)), def); } local Name = "$Name$"; diff --git a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous.ocd/Script.c b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous.ocd/Script.c index 51b84a1ab..e1338e207 100644 --- a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous.ocd/Script.c +++ b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous.ocd/Script.c @@ -14,6 +14,11 @@ public func GetTreetopPosition(pos) return Shape->Rectangle(-23,-11, 46,33)->GetRandomPoint(pos); } +private func Definition(def) +{ + SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-20000, -10000, 60000), Trans_Rotate(35,0,0,1)), def); +} + local Name = "$Name$"; local Touchable = 0; local BlastIncinerate = 2; diff --git a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous2.ocd/Script.c b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous2.ocd/Script.c index f8d17cb6c..6602e8179 100644 --- a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous2.ocd/Script.c +++ b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous2.ocd/Script.c @@ -14,6 +14,11 @@ public func GetTreetopPosition(pos) return Shape->Rectangle(-25,-15, 20,30)->GetRandomPoint(pos); } +private func Definition(def) +{ + SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-25000, -8000, 35000), Trans_Rotate(35,0,0,1), Trans_Rotate(-15,1)), def); +} + local Name = "$Name$"; local Touchable = 0; local BlastIncinerate = 2; diff --git a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous3.ocd/Script.c b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous3.ocd/Script.c index 703420187..36410576e 100644 --- a/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous3.ocd/Script.c +++ b/planet/Objects.ocd/Vegetation.ocd/Trees.ocd/Coniferous3.ocd/Script.c @@ -7,12 +7,17 @@ private func SeedChance() { return 500; } private func SeedArea() { return 400; } private func SeedAmount() { return 10; } +local lib_tree_burned = Tree_Coniferous3_Burned; + public func GetTreetopPosition(pos) { return Shape->Rectangle(-10,-8, 20,10)->GetRandomPoint(pos); } -local lib_tree_burned = Tree_Coniferous3_Burned; +private func Definition(def) +{ + SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-25000, -8000, 22000), Trans_Rotate(40,0,0,1), Trans_Rotate(-10,1)), def); +} local Name = "$Name$"; local Touchable = 0;