1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2025-02-17 18:59:17 +01:00

31 lines
797 B
C#
Raw Permalink Normal View History

2020-04-19 03:24:48 +07:00
using System;
namespace VoxCharger
{
public abstract partial class Camera
{
public class Rotation : Camera
{
public Rotation(Time time, int duration, float start, float end)
: base(time, WorkType.Rotation)
{
Duration = duration;
Start = start;
End = end;
}
public override string ToString()
{
return $"{base.ToString()}" +
$"\tCAM_RotX" +
$"\t2" +
$"\t{Duration}" +
$"\t{Start:0.00}" +
$"\t{End:0.00}" +
$"\t0.00" +
$"\t0.00";
}
}
}
}