摘要:
开个坑,后续补解析 class Solution { public: int countSubstrings(string s) { int n = s.size(); string t = "$#"; for (const char &c: s) { t += c; t += '#'; } n = 阅读全文
摘要:
在敌人物体身上添加 Slider,将Background设置为黑色,FIllarea设置为绿色,调整滑块大小。 生命值减少代码设计如下: using System.Collections; using System.Collections.Generic; using UnityEngine; us 阅读全文