gpt4 book ai didi

haxe - Flashdevelop/HaxePunk : Build halted with errors

转载 作者:行者123 更新时间:2023-12-01 04:58:30 25 4
gpt4 key购买 nike

我一直在努力关注 this HaxePunk 入门教程。我正在使用 FlashDevelop,并且必须在添加 logo.png 后尝试运行该程序。但是,当我运行程序时,我得到以下输出:

Running process: C:\Program Files (x86)\FlashDevelop\Tools\fdbuild\fdbuild.exe "D:\Haxe Projects\Prj_Starting\Prj_Starting.hxproj" -ipc f201d2c5-2ffe-46d4-bb54-c67a3e34ab4a -version "3.2.1" -compiler "C:\Program Files\HaxeToolkit\haxe" -library "C:\Program Files (x86)\FlashDevelop\Library" -target "neko" 
Building Prj_Starting
Running Pre-Build Command Line...
cmd: "C:\Program Files\HaxeToolkit\haxe/haxelib" run lime build "project.xml" neko -debug -Dfdb
[file_contents,C:\Program Files\HaxeToolkit\haxe\lib\lime//.current]
Build halted with errors.
Done(1)

没有给出特定于错误的错误,所以我不确定出了什么问题。我完全按照教程进行操作,这些是我的类(class):

主文件
import com.haxepunk.Engine;
import com.haxepunk.HXP;

class Main extends Engine
{

override public function init()
{
#if debug
HXP.console.enable();
#end
HXP.scene = new MainScene();
}

public static function main() { new Main(); }

}

MainScene.hx
import com.haxepunk.Scene;

class MainScene extends Scene
{
public override function begin()
{
add(new Logo());
}
}

标志.hx
package src;
import com.haxepunk.Entity;
import com.haxepunk.graphics.Image;
import com.haxepunk.utils.Input;
import com.haxepunk.utils.Key;

/**
* Logo entity.
* @author Abigail Smith
*/
class Logo extends Entity
{

private var speed:Int;

public function new()
{
super(270, 190);
speed = 5;
graphic = new Image("graphics/logo.png");
}

public override function update():Void {
if (Input.check(Key.RIGHT)) {
moveBy(speed, 0);
}
if (Input.check(Key.LEFT)) {
moveBy(-speed, 0);
}
if (Input.check(Key.DOWN)) {
moveBy(0, speed);
}
if (Input.check(Key.UP)) {
moveBy(0, -speed);
}
}
}

对解决此错误的任何帮助将不胜感激。谢谢 :)

最佳答案

看起来您对需要的名为“lime”的库之一有问题。

[file_contents,C:\Program Files\HaxeToolkit\haxe\lib\lime//.current]
  • 开通 cmd 并输入 haxelib 列表
  • 检查您是否可以看到石灰 图书馆有
  • 如果它在那里然后运行 ​​ haxelib 更新石灰 否则你需要通过运行 来安装它haxelib 安装石灰

  • 希望这能解决您的问题!

    关于haxe - Flashdevelop/HaxePunk : Build halted with errors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35060380/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com