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

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

401. 如何将一段文字放置到粘贴板 , 或者说点击一个按钮后复制copy一段文字? [ 42%]

...附加百万原生API 的光环 2017-06-09 0 0 分享 微博 QZONE 微信 super1013 赞同来自: 你是怎么实现的,能不能分享一下,我的功能和你的一样 2018-01-30 0 0 分享 微博 QZONE 微信 moketao 赞同来自: 我是用 html <button> + clipboard.js 最终实现的...

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

402. 一个简单的跑酷曲面shader分享 [ 42%]

...e: number = Laya.Shader3D.propertyNameToID("u_ZDistance"); constructor() { super(); this.setShaderName("CustomCurveShader"); this.enableVertexColor = false; this.albedoColor = new Laya.Vector4(0.0, 0.0, 0.0, 0.0); this.xoffset = 15.0; this.yoffset = -15.0; this.zdistance = 200.0; } public static ini...

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

403. laya加载unity插件导出的场景 physics3D is not a function [ 42%]

... export default class GameUI extends ui.test.TestSceneUI { constructor() { super();       //添加3D场景 Laya.Scene3D.load("res/Conventional/SimpleTown_DemoScene.ls",Laya.Handler.create(this,function(s:Laya.Scene3D):void{ var scene = s; Laya.stage.addChild(scene); //创建摄像机(横纵比,...

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

404. 请大家帮助优化一下这个抛物线的代码 [ 42%]

...te static cached:boolean = false; private body:Laya.Sprite; constructor(){ super(); this.init(); } public init():void{ if(!Ball.cached){ Ball.cached = true; this.body = new Laya.Sprite(); this.body.loadImage("war/ball.png"); this.body.pivot(12,12); } this.addChild(this.body); Laya.timer.frameLoop(1,...

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

405. list ,增加item ,我想在末尾增加,但是每次都给我翻倍的增加,如何解决 [ 42%]

...E_DOWN, this, function (e) { list.addItem(1); }); function Item() { Item.__super.call(this); this.size(416, 270); this.text = new Text(); this.text.fontSize = 20; this.text.pos(12, 5); this.text.color = "#FF00FF"; this.text.zOrder = 1; this.addChild(this.text); this.setImg = function(data) { var aar...

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

406. 使用typescript开发项目,解决文件引用顺序问题 [ 41%]

...orld.ts export default class HelloWorld extends Laya.Text { constructor(){ super() this.text = "Hello Layabox" this.color = '#ffffff' } }   2017-11-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 Monica - 知...

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

407. List中放TextInput,当list滚动的时候,复用会有问题,input中的内容会乱,尤其有输入框focus的情况下 [ 41%]

...put = laya.ui.TextInput; var WID = 373, HEI = 30; function Item() { Item.__super.call(this); this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); this.img.graphics.drawRect(0, 0, WID, HEI - 2, "#eeeeee"); this.label = new Label(); this.addChild(this.label); this.input = new TextInpu...

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

408. 按钮失效,同UI里的一个图片超链接点击后再返回,出现按钮失效。 [ 41%]

...的继承类 var StartResource = function StartResource(){ StartResource.super(this); //LOGO 图标 访问地址 var href='https://list.tmall.com/search_product.htm?q=%BB%A8%D3%A1%D0%B6%D7%B1%CB%AE&type=p&spm=a220m.1000858.a2227oh.d100&xl=%BB%A8%D3%A1_2&from=.list.pc_1_suggest';   ...

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

409. 分享:简单聊天室 [ 41%]

...r2:String; private var isSend:Boolean=false; public function HtmlView1() { super(); // 文本样式一 str="<span color='blue' style=' font" + ":18px 华文琥珀' href='http://ask.layabox.com'>LayaBox</span>" + "<span color='white' style=' font:18px 华文琥珀'>邀请</span&g...

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

410. 微信小游戏加载资源问题 [ 41%]

...niSoundChannel extends Laya.SoundChannel { constructor(audio, miniSound) { super(); this._audio = audio; this._miniSound = miniSound; this._onEnd = MiniSoundChannel.bindToThis(this.__onEnd, this); audio.onEnded(this._onEnd); } static bindToThis(fun, scope) { var rst = fun; rst = fun.bind(scope); ret...

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