- 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