tech 409

21/07/13 TicTacToe - LUA TABLES & LUA ARRAYS: Understanding what they are, how they work in LUA and why you might use one

https://youtu.be/SzL3b_PtFFA https://docs.coronalabs.com/api/library/table/index.html Solar2D Documentation — API Reference | Libraries | table Overview Tables in Lua implement associative arrays. That is, they can be indexed not just with numbers, but also with strings or any other value of the language, except nil. When you use tables, you should choose how to index Lua tables (either numerica..

tech/game 2021.07.13

21/07/13 TicTacToe - LUA EVENT HANDLING & EVENT LISTENERS: How to program objects to respond to tap/touch events in Lua

https://youtu.be/G3252oeu-4Q https://docs.coronalabs.com/guide/events/touchMultitouch/index.html Solar2D Documentation — Developer Guides | Events/Listeners Multitouch functionality is only supported on actual mobile devices (phone, tablet, etc.) or on a system with a touchscreen running Windows 7 or higher, in which case multitouch is supported by both the Corona Simulator for Windows and Coron..

tech/game 2021.07.13

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