- Terrain 地形, 第一身視點遊戲
- Unity asset store asset store
教學
[廣東話] Unity 遊戲設計/開發教學 – 第二課: C# Script, 用戶輸入
- C# Scripts as component
- Keyboard Input: left, right, up, down
[廣東話] Unity 遊戲設計/開發教學 – 第一課: Unity Editor 基本用法
Unity Editor 基本用法:
1) Scene view, Hierarchy view, Inspector view, Project view
2) Add / Move / Rotate / Scale game object
3) Run game
[廣東話] Python 入門:第七課 – URL, JSON, Sqlite
Python 入門:第七課 – URL, JSON, Sqlite
- URL request
- JSON
- SqLite
[廣東話] Python 入門:第六課 – Object & Class
Python 入門:第六課 – Object & Class
- Object-Oriented Programming
- Class – blueprint
- Objects – instances of class
- Class definition
- Inheritance
- Namedtuple
[廣東話] Python 入門 – 番外篇:PyCharm 10個必學功能
PyCharm 10個必學功能
- Search & Locate files
- Surround
- Jump to implementation
- Python console
- Todo
- Refactor
- Reorganize code
- Debug & breakpoint
- Bookmark
- Marco
[廣東話] Python 入門:第五課 – Function + File
- Define functions
- Def keyword
- Parameters, arguments, return value, None
- Parameters passing: Use of tuple (*) / dictionary (**)
- File
- Read / write / copy / delete / file exists
[廣東話] Python 入門:第四課 – If-Else, Looping, Try-except
If-Else, Looping, Try-except
- If conditions (if-else / if-elif-else)
- Looping
- While loop + for loop with “break” & “continue”
List comprehension / dictionary comprehension
- While loop + for loop with “break” & “continue”
- Try-except
[廣東話] Python 入門:第三課 – Python containers (2): Dictionary / Set
Python Containers (第二部分)
- Review list, tuple, dictionary & set (列表, 元組, 字典, 集合)
- Dictionary: Conversion, access by key, get, update, remove, clear, keys, values, items, copy
- Set: Conversion, intersection (&), union (|), difference (-)
[廣東話] Python 入門:第二課 – Python Containers – List / Tuple
Python Containers
- Python Containers
- List [] -列表
- Tuple () -元組
- Dictionary {key:value} -字典
- Set {key} -集合
- Using List
- Append, add, insert, extend, pop, del, sort, copy
- Using Tuple
- Accessing elements, variable assignment