-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolarSystem.lua
More file actions
31 lines (21 loc) · 1012 Bytes
/
Copy pathSolarSystem.lua
File metadata and controls
31 lines (21 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- Not really like the solar system, just kinda like any solar system that is messy
Universe = {
-- SUN
{ mass = 3300, position = { 0, 0 }, velocity = { 0, 0 }, color = "yellow" },
-- MERCURY
{ mass = 10, position = { 100, 0 }, velocity = { 0, 180 }, color = "grey" },
-- VENUS
{ mass = 20, position = { 300, 0 }, velocity = { 0, 100 }, color = "orange" },
-- EARTH
{ mass = 60, position = { 500, 0 }, velocity = { 0, 80 }, color = "green" },
-- MARS
{ mass = 10, position = { 900, 0 }, velocity = { 0, 70 }, color = "red" },
-- JUPITER
{ mass = 200, position = { -1500, 0 }, velocity = { 0, -50 }, color = "#aaa200" },
-- SATURN
{ mass = 140, position = { 2100, 0 }, velocity = { 0, 45 }, color = "#bbc200" },
-- URANUS
{ mass = 120, position = { 0, 2800 }, velocity = { -40, 0 }, color = "#aabbff" },
-- NEPTUNE
{ mass = 130, position = { 3500, 0 }, velocity = { 0, 30 }, color = "#aaccff" },
}