zr-web/games/homicidium.md

19 lines
367 B
Markdown
Raw Permalink Normal View History

2025-02-13 10:20:18 -05:00
---
title: homicidium
layout: default
---
# homidicum
2025-02-18 23:06:42 -05:00
An fast paced FPS inspired by 90s boomer shooters
{% highlight cpp linenos %}
void GDExample::_process(double delta) {
time_passed += delta;
Vector2 new_position = Vector2(10.0 + (100.0 * sin(time_passed * 20.0)), 100.0 + (10.0 * cos(time_passed * 1.5)));
set_position(new_position);
}
{% endhighlight %}