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

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

211. 分享:LayaAir下如何获取图集下的小图资源? [ 78%]

...ya.resource.Texture; import laya.utils.Handler; public class Main { public function Main() { //初始化引擎 Laya.init(600, 800); //加载引擎需要的资源 Laya.loader.load([{url:"res/atlas/atlas_res.json",type:Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void...

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

212. 骨骼动画-多纹理 [ 78%]

...private var mArmature:Skeleton; private var mCurrSkinIndex:int = 0; public function Skeleton_MultiTexture() { WebGL.enable(); Laya.init(Browser.width, Browser.height); Laya.stage.bgColor = "#ffffff"; Stat.show(); startFun(); } public function startFun():void { mAniPath = "../../res/spine/spineRes1/d...

来源: Laya2.0_示例 发布时间: 20241118

213. 材质-BlinnPhong-漫反射贴图 [ 78%]

...ng"); earth2.meshRender.material = material; Laya.timer.frameLoop(1, this, function () { earth1.transform.rotate(this.rotation, false); earth2.transform.rotate(this.rotation, false); });class BlinnPhong_DiffuseMap { private rotation: Laya.Vector3 = new Laya.Vector3(0, 0.01, 0); constructor() { Laya3...

来源: Laya_示例 发布时间: 20241118

214. 缓存清除方法clearTextureRes [ 78%]

缓存清除方法clearTextureRes    Loader.clearTextureRes=function(url){             url=URL.formatURL(url);             var arr=laya.net.Loader.getAtlas(url);             var res=arr ? laya.net.Loader.getRes(arr[0]):laya.net.Loader.getRes(url);       ...

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

215. 射线检测-射线检测 [ 78%]

...sphereMesh; var str5 = "旁白 : 秀恩爱,死得快! (MeshCollider)"; function onComplete(){ //添加精灵到场景 sprite3d1 = scene.addChild(new Laya.MeshSprite3D(Laya.Mesh.load("../../res/threeDimen/skinModel/NvWu/NvWu-shenminvwu.lm"))); sprite3d2 = scene.addChild(new Laya.MeshSprite3D(Laya...

来源: Laya_示例 发布时间: 20241118

216. 引擎示例中的新手引导自己写了一次,不知道为什么无法实现点击。 [ 78%]

...新手引导自己写了一次,不知道为什么无法实现点击。 (function() { var guideSteps = [ { x: 151, y: 575, radius: 150, tip: "../../res/guide/help6.png", tipx: 200, tipy: 250 }, { x: 883, y: 620, radius: 100, tip: "../../res/guide/help4.png", tipx: 730, tipy: 380 }, { x: 1128, y: 58...

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

217. 问一下这个问题要怎么改啊? [ 78%]

...private var pic:Sprite; private var picX:int; private var picY:int; public function addPic(str:String, x:int, y:int) { picUrl = str; picX = x; picY = y; Laya.loader.load(picUrl, Handler.create(this, showBgImg)); } private function showBgImg():void { pic = new Image(); pic.graphics.drawTexture(Laya.l...

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

218. 骨骼动画-藤蔓 [ 78%]

... private var mCurrSkinIndex:int = 0; private var mFactory2:Templet; public function Skeleton_SpineVine() { WebGL.enable(); Laya.init(Browser.width, Browser.height); Laya.stage.bgColor = "#ffffff"; Stat.show(); startFun(); } public function startFun():void { mAniPath = "../../res/spine/spineRes5/vine...

来源: Laya2.0_示例 发布时间: 20241118

219. 释放资源与阴影冲突的问题 [ 78%]

...= Laya.Resource; import RenderTexture = Laya.RenderTexture; export default function destroyUnusedResourcesHack() { // @ts-ignore let idResourcesMap = Resource._idResourcesMap; for (let k in idResourcesMap) { let res = idResourcesMap[k]; if (!(res instanceof RenderTexture) && !res.lock &&...

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

220. 缓动-时间线 [ 78%]

...ipt、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。(function () { var Sprite = Laya.Sprite; var Stage = Laya.Stage; var Event = Laya.Event; var Keyboard = Laya.Keyboard; var TimeLine = Laya.TimeLine; var WebGL = Laya.WebGL; var target; var timeLine = new TimeLine(); (function ...

来源: Laya_示例 发布时间: 20241118