Phaser 3: Clone Sprite on click amp; drag immediately(Phaser 3:点击并立即拖动克隆精灵)
本文介绍了Phaser 3:点击并立即拖动克隆精灵的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个像按钮一样工作的Sprite,但当您按下它时,它会复制并允许您拖动复制的副本。我几乎已经让它工作了,但目前你必须首先点击创建一个副本,并且只能在第二次点击后才能拖动。我希望能够单击一次并立即能够拖动。
拖动副本而不是原始副本非常重要,因为原始副本具有所有的点击功能。
create() {
sprite = scene.add.sprite(0,0, "clean", "showerhead_0000");
sprite.setInteractive({ useHandCursor: true });
sprite.on('pointerdown', () => {
dragTool(scene, options[idx], sprite);
});
this.input.on('drag', function(pointer, gameObject, dragX, dragY) {
gameObject.x = dragX;
gameObject.y = dragY;
});
this.input.on('dragend', function(pointer, gameObject) {
gameObject.destroy();
gameState.clean_cursor = false;
});
}
function dragTool(scene, option, sprite){
let activePointer = scene.input.activePointer;
let clone = scene.add.sprite(sprite.x,sprite.y, sprite.texture.key, sprite.frame.name);
gameState.clean_cursor = clone;
gameState.clean_cursor.setInteractive();
scene.input.setDraggable(gameState.clean_cursor);
}
推荐答案
也许我遗漏了什么,但我会保持简单。
- 创建两个图像/按钮,一个是普通图像/按钮,一个是占位符
- 占位符将被原始占位符覆盖,但拖动占位符时除外
- 拖动时,只需拖动普通按钮
- 拖动结束时重置正常按钮的位置
这应该是一样的,而且不是那么复杂。
这里有一个工作示例:
数据-lang="js"数据-隐藏="假"数据-控制台="假"数据-巴贝尔="假">let Example = {
preload () {
this.load.spritesheet('brawler', 'https://labs.phaser.io/assets/animations/brawler48x48.png', { frameWidth: 48, frameHeight: 48 });
},
create () {
let buttonPos = { x:0, y:0};
let buttonPlaceholder = this.add.image(buttonPos.x, buttonPos.y, 'brawler', ).setOrigin(0, 0);
let button = this.add.image(buttonPos.x, buttonPos.y, 'brawler', ).setOrigin(0, 0);
this.isDragging = false;
button.setInteractive({ useHandCursor: true });
this.input.setDraggable(button);
this.input.on('drag', function(pointer, gameObject, dragX, dragY) {
gameObject.x = dragX;
gameObject.y = dragY;
});
this.input.on('dragend', function(pointer, gameObject) {
gameObject.x = buttonPos.x;
gameObject.y = buttonPos.y;
});
}
}
const config = {
type: Phaser.AUTO,
width: 400,
height: 200,
scene: [ Example ]
};
const game = new Phaser.Game(config);
<script src="aHR0cHM6Ly9jZG4uanNkZWxpdnIubmV0L25wbS9waGFzZXJAMy41NS4yL2Rpc3QvcGhhc2VyLmpz"></script>
...这应该比创建和销毁图像/按钮更有性能...
这篇关于Phaser 3:点击并立即拖动克隆精灵的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Phaser 3:点击并立即拖动克隆精灵
猜你喜欢
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01