Space Engineers Steam

admin

Survival sandbox experienceThe entire space is waiting for you to explore it. As a space engineer, you have been sent to discover so far unseen planets and the space surrounding them. Build your base on an asteroid, moon or an earth-like planet. Go to whatever planet you want and try to create your cosmic home there. Remember, that each environment is entirely different and you need specific skills and items to survive there. Crafting & ExploringThere are a lot of different types of elements that you can create.

Space Engineers Workshop Collections EliteLSpy's Workshop This item has been removed from the community because it violates Steam Community & Content Guidelines. It is only visible to you. Buy now, play on Steam and receive all future updates for free. We invite you to give your feedback and suggestions to help us create the best game possible. The Deluxe Edition includes the Space Engineers 2013 build, all tracks from the original soundtrack, over 200 unpublished digital concept images and a special badge!

Space Engineers features advanced crafting system that allows you to create objects far beyond your imagination.Construct a large ship if you’re planning some long journey or build a small ship for short distance travels. Sumdog hacks for coins. Find different components to create some complex items and mine completely unknown, raw minerals. Customize your constructions by using many different blocks like: large rubber blocks, triangles, inverted triangles, half blocks. Wear magnetic boots to resist space attraction and weld metal structures of your base. If you like to add some colours to objects that you crafted, there is a possibility to do it.

Paint the scaffolding pink and enjoy your extraordinary space base! Travel through the UniverseTake a long journey through far galaxies and use various space vehicles.Wear a jetpack to fly upon your base or get into a small starship to visit areas located nearby. Don’t forget, that your jetpack requires a specific amount of hydrogen and oxygen. These are two main resources that you will use. Make yourself an oxygen generator never to run out of it! A fully fleshed out physics engineThe game has a strong focus on building moving objects like vehicles.Space Engineers uses a volumetric based physics engine that affects everything, not just the movement of objects. Make some interesting and fun scenarios by destroying or damaging blocks!

Two game modes to choose from!It doesn’t matter if you prefer single player mode over multiplayer or vice versa. It is possible to play both of them. Choose survival or creative mode and decide what is your purpose of visiting space today. Creative mode allows you to design and build anything you want without the need for supply and resources. Building happens instantly with a simple click of a button so this mode is perfect if you want to test some of your concepts.Survival mode, on the other hand, as the name suggests is all about surviving in the cold darkness of space. Endlessly generated worldVisit fascinating places as you travel through galaxies.

The game features endlessly generated universe that includes wide variety of exotic, space places. Discover amazing planets located far away from your home planet and change the future of space science.

Adventure based on real NASA researchSpace Engineers is based on actual NASA predictions about space research in the near future of next sixty years. Everything that happens on your screen is some kind of simulation of what can actually happen to real astronauts. Isn't that exciting? Space Engineers is a creative sandbox survival game about travelling through space. Get ready for endless adventure!.

Advanced crafting options and many different blocks to use. Automatically generated endless universe. Two gaming modes including creative and survival mode. Possibility of painting objects and creating different shapes.

Game based on actual NASA research about space travels. Build advanced space bases. Many different vehicles like jetpacks, big and small ships.

Perfectly written physics engine, move, destroy and damage objects like in the real world. Explore many different places during your travel through the Universe and mine unknown, raw materials.

Welcome to the Space Engineers source code!

From this repository you can build Space Engineers. To play Space Engineers you need to own the game on Steam. Assets (audio, models, textures) are not included in this repository.

Before downloading the source code please read the EULA carefully - End User License Agreement.

See the Change log for latest changes.
Have you found a problem related to the source code? Report an Issue.
Discuss source code on our source code sub-forum.

Prerequisities

  • [Visual Studio 2013 Community Edition with Update 4] (https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs#d-community) or different version of VS2013 with Update 4
  • Steam Client + Space Engineers game (to run and test the game)

Quickstart

Space Engineers must be installed on your computer, Steam must be running.

  • Clone or download and unpack the repository.
  • Open SpaceEngineers.sln in Visual Studio.
  • Open file global.props (it's in configuration folder).
  • Make sure ContentPath tag contains path to SpaceEngineers Content directory in Steam folder.
  • Start debugging by pressing F5 or select Debug - Start Debugging in main menu

Instead of modifying global.props, you can create user.propsTic tac toe glow. , more information here.

How to contribute

One way to contribute changes is to send a GitHub Pull Request.

To get started using GitHub:

  • Create your own Space Engineers fork by clicking the Fork button in the top right of this page.
  • Install a Git client on your computer.
  • Use the GitHub program to Sync the project's files to a folder on your computer.
  • Open up SpaceEngineers.sln in Visual Studio.
  • Modify the source codes and test your changes.
  • Using the GitHub program, you can easily submit contributions back up to your fork.
  • Do not commit to master, for each feature create new branch.
  • When you're ready to send the changes to the Keen Software House for review, simply create a Pull Request.
  • Following Coding rules will help us lower the time needed to process the PR and merge it thus increase the amount of PRs that can be merged

Advanced topics:

  • You can update your master branch by executing:
    • git pull https://github.com/KeenSoftwareHouse/SpaceEngineers.git master
  • If your master is tainted and any branch you make contains junk, you can do hard reset. All unmerged commits on master branch will be lost.
    • git checkout master
    • git fetch https://github.com/KeenSoftwareHouse/SpaceEngineers.git master
    • git reset --hard FETCH_HEAD
    • git push --force origin master

Common issues

Build error: The command '.3rdUtilsRunTemplate.bat '..MyEnumToStringsGenerated' exited with code 1.This is common when using old versions of Visual Studio, see Visual Studio support. It can also happen when TextTemplating.exe was not found for some reason (it should be installed with Visual Studio).

Assert: unable to find audio/model/texture file: 'xxxxxx'.This happens because repository is slightly ahead of content in Steam folder. Definitions (Content/Data) are taken from repository and may contain new definitions referencing assets which are not yet in Steam content folder. We decided to use definitions from repository by default, so you can easily modify it. You can edit global.props to use definitions from Steam (that should fix the issue). When running on Release asserts won't be shown; missing assets won't crash the game. More info here.

Where is the 64-bit version?

We're unable to provide a 64-bit version of all 3rd party libraries because of licensing. We're working on this and trying to negotiate a better license which will allow us to do that.