From 461dd2deaf129e665225c275cc141b7b9e8b3710 Mon Sep 17 00:00:00 2001 From: Chase Pettit Date: Wed, 4 May 2016 07:49:29 -0400 Subject: [PATCH] README update. --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 26ef86a..b75ff2c 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,10 @@ Do one of the following: * [Download](https://github.com/Chaser324/unity-build/archive/master.zip) this project and copy the `Editor` dirctory into your project's assets directory. * Make this repository a git submodule within your project's assets directory. -#### Generate BuildSettings -* Generate a BuildSettings file by clicking `Build > Generate > BuildSettings` and selecting an Editor directory within your project. -* Customize the new BuildSettings class to suit your project. +#### Generate Settings +* Click `Build > Edit Settings`. +* If you're using AssetBundles, click `Build > AssetBundles > Edit Settings` to edit the applicable settings. +* If you're using itch.io uploading, click `Build > Upload > itch.io > Edit Settings` to edit the applicable settings. #### Build * Click `Build > Run Build` to build the project. You can select which platforms to build in the `Build > Platforms` menu. @@ -30,9 +31,7 @@ This project is designed to be highly modular, so you can delete any parts you d * Set the constant values. #### Creating Pre/Post BuildActions. -There are two options here: -* If your pre/post build actions are very specific to your project, you may want to just override the `PreBuild` and `PostBuild` actions in your project's BuildSettings class. -* If you want the pre/post build actions to be easier to reuse on new projects, create an editor class that inherits from `PreBuildAction` or `PostBuildAction` and overrides the `Execute` method. +Create an editor class that inherits from `PreBuildAction` or `PostBuildAction` and overrides the `Execute` method. You can override the "priority" property to control the order actions execute (lower values runs earlier). ## Command Line Interface