Team Updates

Final protect
Final protect
riddlerAmirlan Sabalakov
Final editor result scene
Final editor result scene
riddlerAmirlan Sabalakov

What we have in our project

  • Added The Sun
    • Added brightness of The Sun
  • Added 8 Planets
  • Added Several properties for each planets and The Sun
    • Added Orbit velocity
    • Added Self velocity
    • Added Size
  • Added Space environment
  • Added texture generate
  • Fixed velocity
  • Creator material for 8 planet
  • Camera setting
  • Camera shifting
  • Fixing position of planets
  • Added switching between planets and the main camera
defoulseAidarkhan Pernebekov

Added reset button

defoulseAidarkhan Pernebekov
Now, first two planet have texture on it
Now, first two planet have texture on it
riddlerAmirlan Sabalakov
var mat = ResourceLoader.load("res://Material/Planet.tres");
var mat2 = ResourceLoader.load("res://Material/Planet2.tres");
var new_texture = ImageTexture.new();
var new_texture2 = ImageTexture.new();
for child in range($Sun.get_child_count()):
if ($Sun.get_child(0).get_index() == child):
continue
elif ($Sun.get_child(1).get_index() == child):
new_texture.load("res://Texture/Planet/Mercury.jpg")
mat.albedo_texture = new_texture
mat.emission_texture = new_texture
new_texture.get_format()
elif ($Sun.get_child(2).get_index() == child):
new_texture2.load("res://Texture/Planet/Venus.jpg")
mat2.albedo_texture = new_texture2
mat2.emission_texture = new_texture2
riddlerAmirlan Sabalakov
extends Spatial
func _ready():
pass
func _input(event):
if Input.is_key_pressed(KEY_SPACE):
if $Base/InnerGimbal/Camera.make_current():
$Base/InnerGimbal/Camera.clear_current(true)
if Input.is_key_pressed(KEY_1):
if $Sun/Planet/Base/InnerGimbal/Camera.make_current():
$Sun/Planet/Base/InnerGimbal/Camera.clear_current(true)
riddlerAmirlan Sabalakov
This is sneak peek of our script of cameras shifting position
This is sneak peek of our script of cameras shifting position
riddlerAmirlan Sabalakov
Now, camera integrate in main project
Now, camera integrate in main project
riddlerAmirlan Sabalakov
Integrating with Camera functions to main scene
Integrating with Camera functions to main scene
defoulseAidarkhan Pernebekov
Well, looks fine
Well, looks fine
riddlerAmirlan Sabalakov
First planet that can rotate around the Sun
First planet that can rotate around the Sun
defoulseAidarkhan Pernebekov
Trying to integrate my part with Aidarkhan's part
Trying to integrate my part with Aidarkhan's part
riddlerAmirlan Sabalakov
Now looks good. Here we go!
Now looks good. Here we go!
defoulseAidarkhan Pernebekov
Created The Sun
Created The Sun
defoulseAidarkhan Pernebekov
Uploaded a bunch of textures with good quality
Uploaded a bunch of textures with good quality
defoulseAidarkhan Pernebekov
Created a blank sphere
Created a blank sphere
defoulseAidarkhan Pernebekov
First step Camera
First step Camera
riddlerAmirlan Sabalakov
Getting Start with Godot Engine
Getting Start with Godot Engine
defoulseAidarkhan Pernebekov