aboutsummaryrefslogtreecommitdiff
path: root/src/example/ForestParallaxScript.cpp
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-19 11:13:31 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-19 11:13:31 +0100
commitedd5fd83f4a5337ba06955bd59a136f7eb699234 (patch)
tree34df11d1c15816840a0542e3789d7c7eae92fdd4 /src/example/ForestParallaxScript.cpp
parent067aa2536f9f43d07e22696c618258a26ae928b3 (diff)
Moved ForestParallaxScript to seperate file
Diffstat (limited to 'src/example/ForestParallaxScript.cpp')
-rw-r--r--src/example/ForestParallaxScript.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/example/ForestParallaxScript.cpp b/src/example/ForestParallaxScript.cpp
new file mode 100644
index 0000000..782cdf0
--- /dev/null
+++ b/src/example/ForestParallaxScript.cpp
@@ -0,0 +1,28 @@
+#include "ForestParallaxScript.h"
+
+using namespace crepe;
+using namespace std;
+
+ForestParallaxScript::ForestParallaxScript(float begin_x, float end_x,
+ std::string unique_bg_name)
+ : begin_x(begin_x),
+ end_x(end_x),
+ name(unique_bg_name) {}
+
+void ForestParallaxScript::update() {
+ RefVector<Transform> vec_2
+ = this->get_components_by_name<Transform>("forest_bg_2_" + name);
+ RefVector<Transform> vec_3
+ = this->get_components_by_name<Transform>("forest_bg_3_" + name);
+
+ for (Transform & t : vec_2) {
+ if (t.position.x > end_x - 400) {
+ t.position.x = begin_x - 400;
+ }
+ }
+ for (Transform & t : vec_3) {
+ if (t.position.x > end_x - 400) {
+ t.position.x = begin_x - 400;
+ }
+ }
+}