GodotComponentTest/entities/Entity.cs

12 lines
227 B
C#
Raw Normal View History

using Godot;
using System;
public class Entity : KinematicBody
{
public Vector3 Velocity { get; set; } = Vector3.Zero;
public float RotationalVelocity { get; set; } = 0;
public override void _Ready()
{
}
}