-
-
Notifications
You must be signed in to change notification settings - Fork 170
khafile.js
Kha uses a javascript file called khafile.js where you configure your project. A basic khafile.js looks like this:
var project = new Project('ProjectName');
project.addAssets('Assets/**');
project.addSources('Sources');
resolve(project);
This set the Assets and Source folders, and uses the default configuration for other options.
Set the Assets folder:
project.addAssets('Assets/**');
khamake will flatten your directory structure during preprocessing.
Suppose you have some non-unique files like map.txt in folder1 and folder2.
Using the basic version will actually give you an error during preprocessing, as khamake will try to create kha.Assets.blobs.map_txt
twice. To fix that, specify some patterns to actually keep the folder structure in the generated sources.
Asset folder layout
/assets
/folder1
map.txt
/folder2
map.txt
khafile.js
project.addAssets('assets/**', {
nameBaseDir: 'assets',
destination: '{dir}/{name}',
name: '{dir}/{name}'
});
Now access them with
kha.Assets.blobs.folder1_map_txt
kha.Assets.blobs.folder2_map_txt
project.addSources('Sources');
You can use multiple source folders, including external folders.
project.addLibrary('Kha2D');
The library needs to be in a folder called 'Libraries' in the root of your project, or can be a haxelib library.
You may also define your own libraries folder with:
project.localLibraryPath = 'libs';
project.addShaders('Sources/Shaders/**');
Add a Compiler Flag
project.addParameter('-dce full');
project.addParameter('-main Main');
khafiles can react to specific events during the build process.
callbacks.preAssetConversion = () => { };
callbacks.preShaderCompilation = () => { };
callbacks.preHaxeCompilation = () => { };
callbacks.postHaxeCompilation = () => { };
callbacks.postCppCompilation = () => { };
project.addDefine('debug_collisions');
project.windowOptions.width = 1366;
project.windowOptions.height = 768;
project.targetOptions.flash.swfVersion = 11.6;
project.targetOptions.flash.framerate = 42;
project.targetOptions.flash.stageBackground = 'ff0000';
project.targetOptions.android_native.package = 'com.example.app';
project.targetOptions.android_native.screenOrientation = 'portrait';
project.targetOptions.android.package = 'com.example.app';
project.targetOptions.android.screenOrientation = 'portrait';
project.targetOptions.ios.bundle = 'com.example.$(PRODUCT_NAME:rfc1034identifier)';
project.targetOptions.ios.organizationName = 'Your Awesome Organization';
project.targetOptions.html5.canvasId = 'my-custom-canvas-id';
project.targetOptions.html5.scriptName = 'my-custom-script-name';
project.targetOptions.html5.webgl = false;
- Introduction
- Getting Started
- Breaking Changes
- FAQ
- System targets
- Graphics targets
- Documentation
- API package descriptions