diff --git a/docs/makinggames.md b/docs/makinggames.md index 91230047..152d805f 100644 --- a/docs/makinggames.md +++ b/docs/makinggames.md @@ -6,17 +6,28 @@ Making games with HappyFunTimes * **[Setting up for devlopment](#setting-up-for-development)** * **[Running Games During Development](#running-games-during-development)** * **[Writing Games](#writing-games)** -* **[Making the controller (phone part)](#making-the-controller)** -* **[requirejs](#requirejs)** -* **[controller.js](#controller-js)** -* **[Dealing with different phone sizes](#dealing-with-different-phone-sizes)** + * **[Making the controller (phone part)](#making-the-controller)** + * **[requirejs](#requirejs)** + * **[controller.js](#controller-js)** + * **[Dealing with different phone sizes](#dealing-with-different-phone-sizes)** * **[Games in JavaScript](#making-a-game)** -* **[game.js](#game-js)** -* **[Handling Players](#handling-players)** + * **[game.js](#game-js)** + * **[Handling Players](#handling-players)** * **[package.json](#packagejson)** -* **[Required Fields](#required-fields)** + * **[Required Fields](#required-fields)** * **[Other Languages](#other-languages)** -* **[hft commands](#hft-commands)** + * **[hft commands](#hft-commands)** + * **[hft add](#hft-add) + * **[hft check](#hft-check) + * **[hft download](#hft-download-gameId) + * **[hft install](#hft-install-srcpath) + * **[hft list](#hft-list) + * **[hft make-release](#hft-make-release-dstpath) + * **[hft publish](#hft-publish) + * **[hft register](#hft-register) + * **[hft remove](#hft-remove) + * **[hft start](#hft-start) + * **[hft uninstall](#hft-uninstall-gameid) * **[Ideas](ideas.md)** * **[Misc](#misc)** * **[Future Features](future.md)** @@ -525,7 +536,7 @@ A standard package.json looks like this * `example` Not a game, not really meant to be played, just an example * `demo` Not a game, something else like an exhibit, possibly not playable without more stuff -##hft Commands +## hft Commands `hft` is a command to help manage happyfuntimes for developers. For the basics typing `hft` will list all the commands. Typing `hft cmd --help` will list the help for a specific command. diff --git a/docs/migration.md b/docs/migration.md index 06e7466b..bc6635a3 100644 --- a/docs/migration.md +++ b/docs/migration.md @@ -1,7 +1,7 @@ Migrating Older Games ===================== -* [Migrating from 0.x.x to 1.x.x](#migrate-from-0xx-to-1xx) +* [Migrating from 0.x.x to 1.x.x](#migrate-from-0xx-to-1xx) ## Migrating from 0.x.x to 1.x.x @@ -191,4 +191,8 @@ here are some of the steps you need to take. If you can't get it to commit it github and send me a link. I'll try to fork it, fix it, and submit a pull request. +Once it works you can publish it as well. [For html games see](makinggames.md#hft-publish). +[For Unity3D games see](unitydocs.md#publishing). + + diff --git a/docs/unitydocs.md b/docs/unitydocs.md index cb67b7c6..9a251ea8 100644 --- a/docs/unitydocs.md +++ b/docs/unitydocs.md @@ -6,12 +6,12 @@ Unity Docs for HappyFunTimes * **[Unity by cloning an existing project](#unity-by-cloning-an-existing-project)** * **[Unity from Scratch](#unity-from-scratch)** * **[Making the Game](#making-the-game)** -* **[Spawning Player GameObjects](#spawning-player-gameobjects)** -* **[Getting Input From Phones](#getting-input-from-phones)** -* **[Sending messages to the Phone](#sending-messages-to-the-phone)** + * **[Spawning Player GameObjects](#spawning-player-gameobjects)** + * **[Getting Input From Phones](#getting-input-from-phones)** + * **[Sending messages to the Phone](#sending-messages-to-the-phone)** * **[Publishing](#publishing)** -* **[Testing](#testing)** -* **[Publish](#publish)** + * **[Testing](#testing)** + * **[Publish](#publish)** * **[Ideas](ideas.md)** * **[Future Features](future.md)**