From 7465c37c0371586b8d1052d15539b094ea18c14d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Sun, 22 Oct 2023 17:44:55 +0200 Subject: [PATCH] drop old _mirror --- .gitmodules | 5 +---- _mirror | 1 - demos/05-scene.c | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 160000 _mirror diff --git a/.gitmodules b/.gitmodules index 24bf995..53f50dc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ [submodule "depot"] path = depot - url = git@dev.v4.games:v4games/depot.git -[submodule "_mirror"] - path = _mirror - url = git@dev.v4.games:v4games/FWK-mirror.git + url = git@dev.v4.games:v4games/depot.git \ No newline at end of file diff --git a/_mirror b/_mirror deleted file mode 160000 index b7dc665..0000000 --- a/_mirror +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b7dc66559ecfae5c485f883470384eaf7e9fb55f diff --git a/demos/05-scene.c b/demos/05-scene.c index 9af4f2a..09c2990 100644 --- a/demos/05-scene.c +++ b/demos/05-scene.c @@ -81,7 +81,7 @@ int main() { // queue model scale bounces float t = fmod(window_time(), 0.3) / 0.3; - float s = 0.01f * ease_ping_pong(t, ease_in_cubic,ease_out_cubic); + float s = 1.0;//0.01f * ease_ping_pong(t, ease_in_cubic,ease_out_cubic); object_scale(obj1, vec3(0.20f - s,0.20f + s,0.20f - s)); object_scale(obj2, vec3(0.20f - s,0.20f + s,0.20f - s));