tech/game 172

21/07/13 TicTacToe - LUA DISPLAY OBJECTS & LUA FONT FORMATING: How to style objects, fonts in Lua

https://youtu.be/CgFtOWQvcAo https://fonts.google.com/ Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com https://fonts.google.com/specimen/Ranchers?query=rancher Google Fonts Making the web more beautiful, fast, and open through great typography fonts.google.com https://www.dafont.com/brady-bunch.font Brady Bunch Remastered Font | dafont.com www..

tech/game 2021.07.13

21/07/13 TicTacToe - LUA GROUPS: Learn how to use groups to act as layers to display you app content and organise objects

https://youtu.be/lFb28H0fbR0 ``` local composer = require( "composer" ) local scene = composer.newScene() -- ----------------------------------------------------------------------------------- -- Code outside of the scene event functions below will only be executed ONCE unless -- the scene is removed entirely (not recycled) via "composer.removeScene()" -- ----------------------------------------..

tech/game 2021.07.13

21/07/13 TicTacToe - SOLAR 2D - FOR LOOPS: How to write a for loop, when to use, demo of program flow logic execution.

https://youtu.be/m53Hak2O0sY ``` local composer = require( "composer" ) local scene = composer.newScene() -- ----------------------------------------------------------------------------------- -- Code outside of the scene event functions below will only be executed ONCE unless -- the scene is removed entirely (not recycled) via "composer.removeScene()" -- ----------------------------------------..

tech/game 2021.07.13

21/07/13 TicTacToe - DISPLAY OBJECTS & FUNCTIONS: Creating display.objects and learning to use local functions

https://youtu.be/eTh3f-oabSQ ``` local composer = require( "composer" ) local scene = composer.newScene() -- ----------------------------------------------------------------------------------- -- Code outside of the scene event functions below will only be executed ONCE unless -- the scene is removed entirely (not recycled) via "composer.removeScene()" -- ----------------------------------------..

tech/game 2021.07.13

21/07/13 TicTacToe - COMPOSER SCENE & PLAYER CHARACTERS: The first step in creating our Game Play file.

https://youtu.be/Ew8Ikkfy6Es ``` local composer = require( "composer" ) local scene = composer.newScene() -- ----------------------------------------------------------------------------------- -- Code outside of the scene event functions below will only be executed ONCE unless -- the scene is removed entirely (not recycled) via "composer.removeScene()" -- ----------------------------------------..

tech/game 2021.07.13