- scriptified ASecurityCamera and AAimingCamera.

This concludes this round of script converesions of internal classes.
This commit is contained in:
Christoph Oelckers 2016-11-29 20:16:14 +01:00
commit 9193466572
5 changed files with 110 additions and 206 deletions

View file

@ -7539,6 +7539,13 @@ DEFINE_ACTION_FUNCTION(AActor, Vec3To)
ACTION_RETURN_VEC3(self->Vec3To(t));
}
DEFINE_ACTION_FUNCTION(AActor, Vec2To)
{
PARAM_SELF_PROLOGUE(AActor);
PARAM_OBJECT(t, AActor)
ACTION_RETURN_VEC2(self->Vec2To(t));
}
DEFINE_ACTION_FUNCTION(AActor, Vec3Angle)
{
PARAM_SELF_PROLOGUE(AActor);