大约有 46 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
...r Event = Laya.Event; var Browser = Laya.Browser; var WebGL = Laya.WebGL; (function() { // 不支持WebGL时自动切换至Canvas <!--laya-stage--> const canvas = document.getElementById('laya-stage'); Browser.container = canvas; var canvas2 = Laya.init(480, 360, WebGL); // Laya.stage.bgColor ...
来源: Laya_社区 发布时间: 20180205
...{ prevTasks = ["替换Laya前缀"] } const fs = require("fs"); function readFile(path) { if (fs.existsSync(path)) { return fs.readFileSync(path, "utf-8"); } return null; } gulp.task('替换Laya前缀', function(){ var layaMaxUI_Pat...
来源: Laya_社区 发布时间: 20191017
...dTime:int; private var cdTime:int; public var isCd:Boolean = false; public function CdSprite() { super(); this.scrollRect = rect; this.alpha = 0.85; } public function setSize(bian:int):void{ r = bian / Math.SQRT2; rect = new Rectangle(0,0,bian,bian); this.scrollRect = rect; pos = bian * 0.5; } publi...
来源: Laya_社区 发布时间: 20171124
...S_TIMER_TYPE_RECT:String = "PROGRESS_TIMER_TYPE_RECT" public function ProcessTimer(size:Size) { this.spSize = size; super(); } public static function create(img:Image,size:laya.maths.Size...
来源: Laya_社区 发布时间: 20180404
...noscale, fixedwidth, fixedheight进行试验, 代码如下:var rect; (function() { Laya.init(550, 400); // Laya.stage.scaleMode = Stage.SCALE_SHOWALL; // Laya.stage.scaleMode = "noscale"; // Laya.stage.scaleMode = "fixedwidth"; Laya.stage.scaleMode = "fixedheight"; Laya.stage.bgColor = "#ff0000"...
来源: Laya_社区 发布时间: 20170206
...域都是没有关系的,我们需要设置的是hitArea,如下所示 (function () { var Templet = Laya.Templet; var Event = Laya.Event; var Browser = Laya.Browser; var Handler = Laya.Handler; var WebGL = Laya.WebGL; var mFactory; var mArmature; (function () { Laya.init(Browser.width, Browser.he...
来源: Laya_社区 发布时间: 20170830
...下方法 /** *设置容器的点击区域 */ __proto.setContentHitArea = function () { var content=this._content; var rect = new Laya.Sprite(); rect.graphics.drawRect(0, 0, this.contentWidth, this.contentHeight, "#000000"); content.hitArea = new Laya.HitArea(); content.hitArea.hit = rect.graphics; ...
来源: Laya_社区 发布时间: 20170610
...------------------------------------------------------------------------- (function (exports, Laya) { 'use strict'; const TiledMapFlipConst = 1073741824; const TiledMapFlipConstHalf = TiledMapFlipConst / 2; class GridSprite extends Laya.Sprite { constructor() { ...
来源: Laya_社区 发布时间: 20220627
...Width=false; var windowOnWidth=true; var isIos=true; window.top.onresize = function () { var u = navigator.userAgent; if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) { isIos=false; }else if(!!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)){ isIos=true; } var windowWidth=true; if(window.doc...
来源: Laya_社区 发布时间: 20190313
物体随着鼠标滑动旋转脚本 function ObjectRotate() { ObjectRotate.super(this);//这里不太清楚作用 //最终鼠标在X轴上的值 this.lastMouseX = NaN; //最终鼠标在Y轴上的值 this.lastMouseY = NaN...
来源: Laya_社区 发布时间: 20170810