summaryrefslogtreecommitdiff
path: root/plugins/hello_gdextension/src/main/cpp/gdexample.cpp
blob: 1652936409cdab09b15af18115d6ecc5b712b3e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "gdexample.h"
#include <godot_cpp/core/class_db.hpp>

using namespace godot;

void GDExample::_bind_methods() {

}

GDExample::GDExample() {
    time_passed = 0.0;
}

GDExample::~GDExample() {}

void GDExample::_process(double delta) {
    time_passed += delta;

    Vector2 new_position = Vector2(10.0 + (10.0 * sin(time_passed * 2.0)), 10.0 + (10.0 * cos(time_passed * 1.5)));

    set_position(new_position);
}