mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2025-01-31 15:59:27 +01:00
30 lines
558 B
C#
30 lines
558 B
C#
|
using Godot;
|
||
|
|
||
|
public class Ball : Area2D
|
||
|
{
|
||
|
private const int DefaultSpeed = 100;
|
||
|
|
||
|
public Vector2 direction = Vector2.Left;
|
||
|
|
||
|
private Vector2 _initialPos;
|
||
|
private float _speed = DefaultSpeed;
|
||
|
|
||
|
public override void _Ready()
|
||
|
{
|
||
|
_initialPos = Position;
|
||
|
}
|
||
|
|
||
|
public override void _Process(float delta)
|
||
|
{
|
||
|
_speed += delta * 2;
|
||
|
Position += _speed * delta * direction;
|
||
|
}
|
||
|
|
||
|
public void Reset()
|
||
|
{
|
||
|
direction = Vector2.Left;
|
||
|
Position = _initialPos;
|
||
|
_speed = DefaultSpeed;
|
||
|
}
|
||
|
}
|