ES6:https://es6.ruanyifeng.com/ 服务器Egg:https://eggjs.org/zh-cn/intro/quickstart.html Unity:https://docs.unity3d.com/2020.2/Documentation/Manual/Avatar Read More
public static getAngle(pointA, pointB): number {//通过两点获得角度 let mx = pointA.x; let my = pointA.y; let px = pointB.x; let py = pointB.y; var x = Math.ab Read More
1.get函数 2.new() ex: private static _ins: View; public static get ins(): View { let s = this; if (!s._ins) { s._ins = new View(); } return s._ins; } pu Read More
namespace byh { /** * 环形组件 */ export class ComRingScroller extends egret.EventDispatcher { public static create(itemArr: any[], offX: number = 0): Com Read More