Nicer picture transformation for trees (related to #1152).

shapetextures
Clonkonaut 2015-10-09 14:52:08 +02:00
parent b9420ce68c
commit 989e70ccf6
4 changed files with 17 additions and 2 deletions

View File

@ -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$";

View File

@ -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;

View File

@ -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;

View File

@ -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;