• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 603 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0053 秒)

1. drawCurves(x:Number, y:Number, points:Array, lineColor:*, lineWidth:Number = 1):void 绘制一系列曲线。 [ 100%]

drawCurves(x:Number, y:Number, points:Array, lineColor:*, lineWidth:Number = 1):void 绘制一系列曲线。 这个方法的参数详解 一直不明白数组里面的点的作用 2016-11-29 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...

来源: Laya_社区 发布时间: 20161129

2. ts加密md5码封装 [ 99%]

...ring):string { return this.md5(str); } split(target: string | any[], step: number, markString: boolean = typeof target === "string") { if (typeof target === "string") target = target.split(""); let result: any[] = target.map( (_, index: number) => index % step === 0 ? Array.from(Array(step).keys(...

来源: Laya_社区 发布时间: 20190321

3. 分享一个Shader版的CoolDown实现 [ 98%]

...s Value2D {         public texcoord: any;         public progress: number;         public uv_info: Array<any>;         constructor() {             super(0, 0);             this.progress = 0.0;             this.uv_info = [0.0, 0.0, 1.0, 1.0];             ...

来源: Laya_社区 发布时间: 20170606

4. [LayaAir3]Laya3.x graphics.drawCurves 闪烁的问题 [ 98%]

...你 一个参考代码   export class CatmullRomSpline { private points: number[]; constructor(points: number[]) { if (points.length < 4 || points.length % 2 !== 0) { throw new Error("At least two points (four numbers) are required, and the total number of values must be even"); } this.points = ...

来源: Laya_社区 发布时间: 20241008

5. WebGLContext2D arcTo方法如果设置了setPathId 无法绘制 [ 97%]

...置了setPathId 无法绘制。 源码 override public function arcTo(x1:Number, y1:Number, x2:Number, y2:Number, r:Number):void {     if (mId != -1) {         var tShape:IShape = VectorGraphManager.getInstance().shapeDic[this.mId];         if (mHaveKey ) {               return; ...

来源: Laya_社区 发布时间: 20190708

6. int/Number/uint之前的强转需要注意哪些问题? [ 97%]

int/Number/uint之前的强转需要注意哪些问题? 2015-12-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 使用int/Number/uint须知 (1)、Number赋值int注意事项描述...

来源: Laya_社区 发布时间: 20151204

7. 分享一个Graphics画圆角矩形的封装 [ 97%]

...选)边框宽度。          */         drawRoundrect(x: number, y: number, width: number, height: number, round: number, fillColor: any, lineColor?: any, lineWidth?: number):void     } }   2、在Main.ts中写入实现 Laya.Graphics.prototype.drawRoundrect = function(x: number,...

来源: Laya_社区 发布时间: 20210123

8. 类似古文显示方式脚本,文字垂直显示,可以控制显示速度出现打字效果等 [ 97%]

...; /** @prop {name:animationState, tips:"动画状态-0 不开启)", type:number, default:0}*/ public animationState: number = 0; /** @prop {name:animationState, tips:"动画间隔单位毫秒", type:number, default:300}*/ public animationInterval: number = 0; /** @prop {name:font, tips:"定义字...

来源: Laya_社区 发布时间: 20191103

9. JCGraphicsCmdDispath::calcBoundingBox Wrong command number!,cmd=-16711936 [ 96%]

JCGraphicsCmdDispath::calcBoundingBox Wrong command number!,cmd=-16711936 JCGraphicsCmdDispath::calcBoundingBox Wrong command number!,cmd=-16711936         打包安卓 单机出现这个 2017-09-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...

来源: Laya_社区 发布时间: 20170914

10. 将一个Number类型的变量赋给一个int型变量,转换后为何没有自动取整呢? [ 96%]

将一个Number类型的变量赋给一个int型变量,转换后为何没有自动取整呢? var i:Number=1.111111111111; var b:int=i; trace(b);as下结果为1,h5下还是1.111111111111   2015-12-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...

来源: Laya_社区 发布时间: 20151203