- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近开始摆弄 HaxeFlixel,在尝试制作一个真正简单的游戏时,我遇到了这个错误:
source/PlayState.hx:10: characters 7-16 : Class not found : GameLogic
这不是我第一次涉足编程游戏或任何东西,但我不知道为什么会弹出此错误。对于初学者来说,GameLogic 甚至不是一个类,它是一个包。当我尝试从我的 GameLogic 包中导入我的基本 Player 类时出现错误。
我的基本播放器类:
package GameLogic;
import flixel.FlxSprite;
import flixel.util.FlxColor;
class Player extends FlxSprite {
public function new(X:Float=0, Y:Float=0) {
super(X, Y);
makeGraphic(32, 32, FlxColor.WHITE);
}
}
抛出异常的地方:
import GameLogic.Player;
class PlayState extends FlxState{
private var p:Player;
override public function create():Void{
p = new Player(20, 20);
add(p);
super.create();
}
我的[相关]目录结构:
| src
| | GameLogic
| | | Player.hx
| | PlayState.hx
最佳答案
作为Haxe docs状态:
Each part of the path in package names must begin with a lower case letter and, like all types, type names in packages must begin with an upper case letter. Hence My.Pack is an invalid package, as is my.Pack. Similarly, my.pack.e would not be a valid type name or import
您必须使用小写的 G
命名您的程序包 gameLogic
才能被识别为正确的程序包名称。 up-to-date docs中的相关部分读起来稍微复杂一些,但本质上对于这个问题的意思是一样的:
Define: Module
All Haxe code is organized in modules, which are addressed using paths. In essence, each .hx file represents a module which may contain several types. A type may be private, in which case only its containing module can access it.
The distinction of a module and its containing type of the same name is blurry by design. In fact, addressing haxe.ds.StringMap can be considered shorthand for haxe.ds.StringMap.StringMap. The latter version consists of four parts:
- the package haxe.ds
- the module name StringMap
- the type name StringMap
- the type parameter Int
概述了名称解析算法 here更详细。
关于package - 导入类时找不到类异常 : Haxe (With OpenFL + Flixel libraries),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27471026/
我一直在浏览 Haxe/OpenFL/Flixel 的网站,但我很难理解每个网站的用途。 据我了解: Haxe 是一种可以部署到多个平台的语言。 OpenFL 与 Flash 有关。 Flixel 是
我最近开始摆弄 HaxeFlixel,在尝试制作一个真正简单的游戏时,我遇到了这个错误: source/PlayState.hx:10: characters 7-16 : Class not fou
所以我关注了Mathew Casperson's Making Games on Android Tutorial几天前运行了一个小游戏,现在我正在尝试将控件切换到触摸屏而不是方向键。 我遇到了一些问
我正在学习本教程: http://www.bukisa.com/articles/223910_creating-a-game-on-google-android-game-with-flixel-g
我是一名优秀的程序员,十分优秀!