[editor] add ColorView
This commit is contained in:
14
gulpfile.js
14
gulpfile.js
@@ -1,4 +1,3 @@
|
||||
"use strict";
|
||||
const gulp = require('gulp');
|
||||
const gulpClean = require('gulp-clean');
|
||||
const Config = require('./config.json');
|
||||
@@ -69,7 +68,9 @@ const client = new Project(
|
||||
name: 'client',
|
||||
sources: ['src/client/haxe'],
|
||||
main: 'ru.m.tankz.Client',
|
||||
assets: ['src/client/resources'],
|
||||
assets: [
|
||||
'src/client/resources',
|
||||
],
|
||||
meta: {
|
||||
width: 1024,
|
||||
height: 768,
|
||||
@@ -88,12 +89,17 @@ const client = new Project(
|
||||
*/
|
||||
const editor = new Project(
|
||||
Project.BuildSystem.OPENFL,
|
||||
Project.Platform.FLASH,
|
||||
[
|
||||
Project.Platform.FLASH,
|
||||
],
|
||||
config.branch({
|
||||
name: 'editor',
|
||||
sources: ['src/client/haxe', 'src/editor/haxe'],
|
||||
main: 'ru.m.tankz.editor.Editor',
|
||||
assets: ['src/client/resources'],
|
||||
assets: [
|
||||
'src/client/resources',
|
||||
'src/editor/resources',
|
||||
],
|
||||
meta: {
|
||||
filename: 'editor',
|
||||
width: 1024,
|
||||
|
||||
Reference in New Issue
Block a user