[editor] add ColorView

This commit is contained in:
2019-03-25 16:01:37 +03:00
parent 216e1aa476
commit a9b591a7ca
10 changed files with 115 additions and 73 deletions

View File

@@ -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,