So, this is kinda a noobish question I guess (o.õ), but I'm trying to make very small actors that should bounce everything they colide with, and, if possible, thrust all actors they colide with. Lets say, they must behave more or less just like billiards, "pool balls".
I've started with the following:
Code: Select all
ACTOR bola 5556
{
Scale 0.3
Radius 6
Height 6
Translation ice
Mass 10
BounceType Doom
BounceFactor 0.2
//BounceSound soundname
//WallBounceSound
+SOLID
+NOBLOOD
+ALLOWBOUNCEONACTORS
+BOUNCEONACTORS
+FORCEXYBILLBOARD
States
{
Spawn:
BAL1 A -1
stop
}
}
Thanks in advance!
