课程地址
ES6
let
let 不能重复声明变量(var 可以)
let a;
let b, c, d;
let e 100;
let f 521, g "atguigu", h [];let 具有块级作用域,内层变量外层无法访问
let 不存在变量提升(运行前收集变量和函数&#…
Alex教程每一P的教程原代码加上我自己的理解初步理解写的注释,可供学习Alex教程的人参考 此代码仅为较上一P有所改变的代码 【Unity教程】从0编程制作类银河恶魔城游戏_哔哩哔哩_bilibili
PlayerPrimaryAttackState.cs
using System.Collections;
using System.Co…