Skip to content

Commit f830581

Browse files
committed
version1.0
1 parent f0378e1 commit f830581

File tree

156 files changed

+371
-82147
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+371
-82147
lines changed

.vscode/launch.json

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
25
"version": "0.2.0",
36
"configurations": [
47
{
5-
"name": "Current TS File",
6-
"type": "node",
8+
"type": "chrome",
79
"request": "launch",
8-
"program": "${workspaceRoot}/node_modules/ts-node/dist/bin.js",
9-
"args": [
10-
"${relativeFile}"
11-
],
12-
"cwd": "${workspaceRoot}",
13-
"protocol": "inspector"
10+
"name": "Launch Chrome",
11+
"url": "http://127.0.0.1:9090/index.html",
12+
"runtimeExecutable": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe",
13+
"sourceMaps": true,
14+
"webRoot": "${workspaceFolder}",
15+
"userDataDir": true,
16+
//"preLaunchTask": "build",
17+
"port":5871
1418
}
1519
]
1620
}

.vscode/tasks.json

+9-27
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,15 @@
11
{
2-
"version": "0.1.0",
3-
"command": "egret",
4-
"isShellCommand": true,
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
55
"tasks": [
66
{
7-
"taskName": "build",
8-
"showOutput": "always",
9-
"args": [
10-
"build",
11-
"-sourcemap"
12-
],
13-
"problemMatcher": "$tsc"
14-
},
15-
{
16-
"taskName": "clean",
17-
"showOutput": "always",
18-
"args": [
19-
"build",
20-
"-e"
21-
],
22-
"problemMatcher": "$tsc"
23-
},
24-
{
25-
"taskName": "publish",
26-
"showOutput": "always",
27-
"args": [
28-
"publish"
29-
],
30-
"problemMatcher": "$tsc"
7+
"label": "build",
8+
"type": "typescript",
9+
"tsconfig": "tsconfig.json",
10+
"problemMatcher": [
11+
"$tsc"
12+
]
3113
}
3214
]
3315
}

build.xml

-5
This file was deleted.

egretProperties.json

-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@
2020
},
2121
{
2222
"name": "promise"
23-
},
24-
{
25-
"name": "reflect",
26-
"path": "node_modules/reflect-metadata"
2723
}
2824
]
2925
}

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<meta name="360-fullscreen" content="true" />
1313
<style>
1414
html, body {
15-
/*-ms-touch-action: none;*/
15+
-ms-touch-action: none;
1616
background: #888888;
1717
padding: 0;
1818
border: 0;

manifest.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,24 @@
55
"libs/modules/game/game.js",
66
"libs/modules/tween/tween.js",
77
"libs/modules/assetsmanager/assetsmanager.js",
8-
"libs/modules/promise/promise.js",
9-
"node_modules/reflect-metadata/reflect.js"
8+
"libs/modules/promise/promise.js"
109
],
1110
"game": [
12-
"bin-debug/mvc/core/EventX.js",
1311
"bin-debug/mvc/core/AbstractMVHost.js",
12+
"bin-debug/mvc/core/MVCInject.js",
1413
"bin-debug/mvc/core/Attribute.js",
1514
"bin-debug/foundation/AbstactPanel.js",
1615
"bin-debug/mvc/Mediator.js",
1716
"bin-debug/mvc/Proxy.js",
17+
"bin-debug/mvc/core/EventX.js",
1818
"bin-debug/test/BagView.js",
19-
"bin-debug/mvc/core/MVCInject.js",
19+
"bin-debug/mvc/core/Singleton.js",
2020
"bin-debug/Main.js",
2121
"bin-debug/foundation/ListenerItemBox.js",
2222
"bin-debug/foundation/ReflectUtils.js",
2323
"bin-debug/foundation/SocketX.js",
2424
"bin-debug/foundation/UILocator.js",
2525
"bin-debug/mvc/Facade.js",
26-
"bin-debug/mvc/core/Singleton.js",
2726
"bin-debug/mvc/core/View.js",
2827
"bin-debug/mvc/interface/IFacade.js",
2928
"bin-debug/mvc/interface/IMediator.js",

manifestDef.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"gameSDK.BagMediator": [
3+
"view:BagView",
4+
"proxy:BagProxy"
5+
],
6+
"gameSDK.BagProxy": [
7+
"skillProxy:SkillProxy"
8+
],
9+
"BagView": [
10+
"bagModel:gameSDK.BagProxy"
11+
],
12+
"SkillMediator": [
13+
"view:SkillView",
14+
"proxy:gameSDK.SkillProxy",
15+
"bagProxy:gameSDK.BagProxy"
16+
],
17+
"SkillView": [
18+
"skillModel:gameSDK.BagProxy"
19+
]
20+
}

node_modules/.bin/mkdirp

-15
This file was deleted.

node_modules/.bin/mkdirp.cmd

-7
This file was deleted.

node_modules/.bin/ts-node

-15
This file was deleted.

node_modules/.bin/ts-node.cmd

-7
This file was deleted.

node_modules/.bin/tsc

-15
This file was deleted.

node_modules/.bin/tsc.cmd

-7
This file was deleted.

node_modules/.bin/tsserver

-15
This file was deleted.

node_modules/.bin/tsserver.cmd

-7
This file was deleted.

node_modules/arrify/license

-21
This file was deleted.

node_modules/arrify/package.json

-65
This file was deleted.

node_modules/arrify/readme.md

-36
This file was deleted.

0 commit comments

Comments
 (0)