_inherited() for trees to access library functionality

console-destruction
Maikel de Vries 2016-09-20 15:11:32 +02:00
parent c3cf464a83
commit 3df960851c
5 changed files with 9 additions and 5 deletions

View File

@ -54,7 +54,7 @@ public func LostCoconut()
/*-- Properties --*/
private func Definition(def, ...)
public func Definition(def, ...)
{
SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-27000, -000, 22000), Trans_Rotate(40,0,0,1), Trans_Rotate(-10,1)), def);
_inherited(def, ...);

View File

@ -14,9 +14,10 @@ public func GetTreetopPosition(pos)
return Shape->Rectangle(-23,-11, 46,33)->GetRandomPoint(pos);
}
private func Definition(def)
public func Definition(def, ...)
{
SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-20000, -10000, 60000), Trans_Rotate(35,0,0,1)), def);
return _inherited(def, ...);
}
local Name = "$Name$";

View File

@ -14,9 +14,10 @@ public func GetTreetopPosition(pos)
return Shape->Rectangle(-25,-15, 20,30)->GetRandomPoint(pos);
}
private func Definition(def)
public func Definition(def, ...)
{
SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-25000, -8000, 35000), Trans_Rotate(35,0,0,1), Trans_Rotate(-15,1)), def);
return _inherited(def, ...);
}
local Name = "$Name$";

View File

@ -14,9 +14,10 @@ public func GetTreetopPosition(pos)
return Shape->Rectangle(-10,-8, 20,10)->GetRandomPoint(pos);
}
private func Definition(def)
public func Definition(def, ...)
{
SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-25000, -8000, 22000), Trans_Rotate(40,0,0,1), Trans_Rotate(-10,1)), def);
return _inherited(def, ...);
}
local Name = "$Name$";

View File

@ -14,9 +14,10 @@ public func GetTreetopPosition(pos)
return Shape->Rectangle(-10,-8, 20,10)->GetRandomPoint(pos);
}
private func Definition(def)
public func Definition(def, ...)
{
SetProperty("PictureTransformation", Trans_Mul(Trans_Translate(-25000, -8000, 22000), Trans_Rotate(40,0,0,1), Trans_Rotate(-10,1), Trans_Rotate(50,0,1)), def);
return _inherited(def, ...);
}
local Name = "$Name$";