From c6cfa28f96132f596a04d3b34fd8545d5c57a503 Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sat, 18 Mar 2023 18:45:00 +0100 Subject: [PATCH] Added some code formatting --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 46ec009..080e6ca 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ CORE is only useful for new projects. Already existing projects could break beca # Requirements - No autoload singletons are allowed before CORE has initialized -- Startup scene must be res://CORE/background.tscn +- Startup scene must be `res://CORE/background.tscn` - Scene management must be done with smgr (the CORE scene manager) - Logging should be handled using the CORE logger @@ -17,12 +17,12 @@ CORE is only useful for new projects. Already existing projects could break beca - Clone CORE into your project root using `git clone https://git.staropensource.de/StarOpenSource/core.git CORE` - Remove any autoload singletons - Add three scripts to your autoload: -| Name | Path | -| ------------ | -------------------------- | -| coreloader | res://CORE/coreloader.gd | -| Logger | res://CORE/logger.gd | -| Preprocessor | res://CORE/preprocessor.gd | -- Select res://CORE/background.tscn as your startup scene +| Name | Path | +| ------------ | ---------------------------- | +| coreloader | `res://CORE/coreloader.gd` | +| Logger | `res://CORE/logger.gd` | +| Preprocessor | `res://CORE/preprocessor.gd` | +- Select `res://CORE/background.tscn` as your startup scene - [Follow the post-installation guide](https://git.staropensource.de/StarOpenSource/core/wiki/Using-CORE) # How to update