I overheard the problem with clouds and decided to suggest a possible solve. I have seen many space games use this tactic and it adds both atmosphere and some cool style accents. The basics of it is that you have 2d convincing images of clouds facing down on the planet. Once the code detects that the ship is passing through the clouds it activates a corner screen animation that makes it look like you are passing through clouds. Then when you exit the atmosphere you just have the image of the planet with clouds around it. This takes most strain off of your device via the use of easy images rather than full on physics based clouds.

Cloud Code (This is very rough cut and I made it in like 3 mins)

while(bool i = false){
if(spaceShipHeight >= (int cloudLevel = 12)){
World.drawRect(overlayCloud1) /*These are the images to work as the animation for when the ship enters the clouds */
World.drawRect(overlayCloud2)
World.drawRect(overlayCloud3)
}
}

From here you just reverse that process when entering the atmosphere and set up animations for the clouds appearing when you get in distance of the planet. Like I said this could be a very cool way to have the player experiencing the clouds without having to make physics and have it drain the machine. Thank you for your time. I know this is very basic but it is just an outline of my idea. Given time I could work on it more if needed.
Thanks,
Alumaur

@AndrewGarrison

Tags
Discussion

7 Comments

  • Log in to leave a comment
  • Profile image

    Thanks, but this isn't applicable to SR2. The atmosphere rendering is very complicated in SR2. We would love to add clouds at some point, but it's quite challenging.

    +6 5.6 years ago
  • Profile image
    1,731 DerekSP

    I believe the clouds are fine as they made them. Andrew said that the game is smooth on an iPhone X, which means that most phones that can actually run it at sufficient speed will not have a problem with clouds. Besides, you could just turn them off, if that is an option.
    Also, I am very confident that the developers are more than aware of this, and will require a bit (much) more complex code for a game where there is no "coordinate zero" (planets are round, planets themselves move)

    +1 5.6 years ago
  • Profile image
    3,462 tsampoy

    @Caveman999 THIS WILL MAKE SIMPLEROCKETS2 BETTER THAN KSP!!!
    (Because kerbin has no coulds, btw I’ve never played the game, only watched videos.)

    +1 5.6 years ago
  • Profile image
    30 Alumaur

    @Caveman999 there was an issue where people feared that adding realistic clouds would lower the performance of the game. This was my idea on how to get the best of both worlds

    +2 5.6 years ago
  • Profile image

    When was there a problem with clouds? Someone just suggested something. Clouds were done ages ago.

    5.6 years ago
  • Profile image
    9,826 York

    sounds good

    5.6 years ago
  • Profile image

    @AndrewGarrison check this one out!

    5.6 years ago

15 Upvotes

Log in in to upvote this post.