From fac6bc34f2ab17bd744ce8004dd9a6342945a664 Mon Sep 17 00:00:00 2001 From: Eli Orona Date: Thu, 1 Aug 2024 21:14:48 -0700 Subject: [PATCH] Add planets --- .../assets/planetarium/planetarium/planets/jupiter.json | 6 ++++++ .../assets/planetarium/planetarium/planets/mars.json | 6 ++++++ .../assets/planetarium/planetarium/planets/mercury.json | 2 +- .../assets/planetarium/planetarium/planets/neptune.json | 6 ++++++ .../assets/planetarium/planetarium/planets/saturn.json | 6 ++++++ .../assets/planetarium/planetarium/planets/uranus.json | 6 ++++++ .../assets/planetarium/planetarium/planets/venus.json | 6 ++++++ 7 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 src/main/resources/assets/planetarium/planetarium/planets/jupiter.json create mode 100644 src/main/resources/assets/planetarium/planetarium/planets/mars.json create mode 100644 src/main/resources/assets/planetarium/planetarium/planets/neptune.json create mode 100644 src/main/resources/assets/planetarium/planetarium/planets/saturn.json create mode 100644 src/main/resources/assets/planetarium/planetarium/planets/uranus.json create mode 100644 src/main/resources/assets/planetarium/planetarium/planets/venus.json diff --git a/src/main/resources/assets/planetarium/planetarium/planets/jupiter.json b/src/main/resources/assets/planetarium/planetarium/planets/jupiter.json new file mode 100644 index 0000000..3aac14a --- /dev/null +++ b/src/main/resources/assets/planetarium/planetarium/planets/jupiter.json @@ -0,0 +1,6 @@ +{ + "procession": 60, + "tilt": 0, + "texture_rotation": 90, + "size": 25.0 +} diff --git a/src/main/resources/assets/planetarium/planetarium/planets/mars.json b/src/main/resources/assets/planetarium/planetarium/planets/mars.json new file mode 100644 index 0000000..11c2d45 --- /dev/null +++ b/src/main/resources/assets/planetarium/planetarium/planets/mars.json @@ -0,0 +1,6 @@ +{ + "procession": 70, + "tilt": 0, + "texture_rotation": 90, + "size": 9.5 +} diff --git a/src/main/resources/assets/planetarium/planetarium/planets/mercury.json b/src/main/resources/assets/planetarium/planetarium/planets/mercury.json index 784683e..37580aa 100644 --- a/src/main/resources/assets/planetarium/planetarium/planets/mercury.json +++ b/src/main/resources/assets/planetarium/planetarium/planets/mercury.json @@ -1,6 +1,6 @@ { "procession": 50, - "tilt": 90, + "tilt": 0, "texture_rotation": 90, "size": 8.0 } diff --git a/src/main/resources/assets/planetarium/planetarium/planets/neptune.json b/src/main/resources/assets/planetarium/planetarium/planets/neptune.json new file mode 100644 index 0000000..c769447 --- /dev/null +++ b/src/main/resources/assets/planetarium/planetarium/planets/neptune.json @@ -0,0 +1,6 @@ +{ + "procession": 80, + "tilt": 0, + "texture_rotation": 90, + "size": 7.0 +} diff --git a/src/main/resources/assets/planetarium/planetarium/planets/saturn.json b/src/main/resources/assets/planetarium/planetarium/planets/saturn.json new file mode 100644 index 0000000..2b1c8b6 --- /dev/null +++ b/src/main/resources/assets/planetarium/planetarium/planets/saturn.json @@ -0,0 +1,6 @@ +{ + "procession": 90, + "tilt": 0, + "texture_rotation": 90, + "size": 16.2 +} diff --git a/src/main/resources/assets/planetarium/planetarium/planets/uranus.json b/src/main/resources/assets/planetarium/planetarium/planets/uranus.json new file mode 100644 index 0000000..337fc18 --- /dev/null +++ b/src/main/resources/assets/planetarium/planetarium/planets/uranus.json @@ -0,0 +1,6 @@ +{ + "procession": 100, + "tilt": 0, + "texture_rotation": 90, + "size": 7.0 +} diff --git a/src/main/resources/assets/planetarium/planetarium/planets/venus.json b/src/main/resources/assets/planetarium/planetarium/planets/venus.json new file mode 100644 index 0000000..a51eebb --- /dev/null +++ b/src/main/resources/assets/planetarium/planetarium/planets/venus.json @@ -0,0 +1,6 @@ +{ + "procession": 110, + "tilt": 0, + "texture_rotation": 90, + "size": 12.5 +}