Signed-off-by: szrpf <27185709@qq.com>
51
.gitignore
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
# Fireball Projects
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/library/
|
||||
/temp/
|
||||
/local/
|
||||
/build/
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
# npm files
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
npm-debug.log
|
||||
node_modules/
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
# Logs and databases
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
# files for debugger
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
*.sln
|
||||
*.pidb
|
||||
*.suo
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
# OS generated files
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
.DS_Store
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
# WebStorm files
|
||||
#/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
.idea/
|
||||
|
||||
#//////////////////////////
|
||||
# VS Code files
|
||||
#//////////////////////////
|
||||
|
||||
.vscode/
|
13
assets/Scene.meta
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "29f52784-2fca-467b-92e7-8fd9ef8c57b7",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
2911
assets/Scene/helloworld.fire
Normal file
8
assets/Scene/helloworld.fire.meta
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"ver": "1.3.2",
|
||||
"uuid": "2d2f792f-a40c-49bb-a189-ed176a246e49",
|
||||
"importer": "scene",
|
||||
"asyncLoadAssets": false,
|
||||
"autoReleaseAssets": false,
|
||||
"subMetas": {}
|
||||
}
|
13
assets/Script.meta
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "4734c20c-0db8-4eb2-92ea-e692f4d70934",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
220
assets/Script/ActionShadow.ts
Normal file
@ -0,0 +1,220 @@
|
||||
/*******************************************************************************
|
||||
* 创建: 2022年11月27日
|
||||
* 作者: 水煮肉片饭(27185709@qq.com)
|
||||
* 描述: 动作残影
|
||||
* 给节点添加残影,残影会跟随节点移动,并跟随节点播放动画。
|
||||
* 使用举例:动作类游戏中,主角释放连击必杀
|
||||
*******************************************************************************/
|
||||
const { ccclass, property, executeInEditMode, playOnFocus, menu } = cc._decorator;
|
||||
class ShadowData {
|
||||
x: number = 0;
|
||||
y: number = 0;
|
||||
angle: number = 0;
|
||||
scaleX: number = 1;
|
||||
scaleY: number = 1;
|
||||
scale: number = 1; //向尾部递减的缩放系数
|
||||
actionName: string = '';
|
||||
frameTime: number = 0;
|
||||
}
|
||||
@ccclass
|
||||
@executeInEditMode
|
||||
@playOnFocus
|
||||
@menu('Comp/ActionShadow')
|
||||
export default class ActionShadow extends cc.Component {
|
||||
@property
|
||||
private _active: boolean = true;
|
||||
@property({ displayName: CC_DEV && '是否激活', tooltip: CC_DEV && '设置残影可见性\n激活会重置残影位置' })
|
||||
get active() { return this._active; }
|
||||
set active(value: boolean) {
|
||||
this._active = value;
|
||||
if (value) {
|
||||
if (this.node.active && this.shadowNode) {
|
||||
this.shadowNode.active = true;
|
||||
this.shadowData.length && this.updateShadowData();
|
||||
}
|
||||
} else {
|
||||
this.shadowNode.active = false;
|
||||
}
|
||||
}
|
||||
@property()
|
||||
private _shadowNum: number = 10;
|
||||
@property({ type: cc.Integer, displayName: CC_DEV && '残影数量' })
|
||||
private get shadowNum(): number { return this._shadowNum; }
|
||||
private set shadowNum(value: number) {
|
||||
this._shadowNum = Math.max(value, 0);
|
||||
this.updateShadowNum();
|
||||
this.updateDeltTime();
|
||||
this.updateShadowData();
|
||||
this.updateColor();
|
||||
}
|
||||
@property()
|
||||
private _deltTime: number = 4;
|
||||
@property({ type: cc.Integer, displayName: CC_DEV && '延迟帧数' })
|
||||
private get deltTime(): number { return this._deltTime; }
|
||||
private set deltTime(value: number) {
|
||||
this._deltTime = Math.max(value, 1);
|
||||
this.updateDeltTime();
|
||||
this.updateShadowData();
|
||||
}
|
||||
@property()
|
||||
private _shadowScale: number = 0.1;
|
||||
@property({ min: 0, max: 1, step: 0.1, slide: true, displayName: CC_DEV && '尾部缩放系数' })
|
||||
private get shadowScale(): number { return this._shadowScale; }
|
||||
private set shadowScale(value: number) {
|
||||
this._shadowScale = value;
|
||||
this.updateShadowData();
|
||||
}
|
||||
@property()
|
||||
private _shadowColor: cc.Color = cc.color(255, 255, 255);
|
||||
@property({ displayName: CC_DEV && '残影颜色' })
|
||||
private get shadowColor(): cc.Color { return this._shadowColor; }
|
||||
private set shadowColor(value: cc.Color) {
|
||||
this._shadowColor = value;
|
||||
this.updateColor();
|
||||
}
|
||||
@property()
|
||||
private _opacity: number = 50;
|
||||
@property({ type: cc.Integer, min: 0, max: 255, slide: true, displayName: CC_DEV && '透明度' })
|
||||
private get opacity(): number { return this._opacity; }
|
||||
private set opacity(value: number) {
|
||||
this._opacity = value;
|
||||
this.updateOpacity();
|
||||
}
|
||||
private nodeOpacity: number = 255;
|
||||
private model: cc.Animation = null;
|
||||
private shadowNode: cc.Node = null;
|
||||
private shadowData: ShadowData[] = [];
|
||||
|
||||
protected start() {
|
||||
let shadowNodeName = 'ActionShadow_' + this.node.name;
|
||||
this.shadowNode = this.node.parent.getChildByName(shadowNodeName)
|
||||
if (!this.shadowNode) {
|
||||
this.shadowNode = new cc.Node(shadowNodeName);
|
||||
this.shadowNode.setParent(this.node.parent);
|
||||
this.shadowNode.setSiblingIndex(this.node.getSiblingIndex());
|
||||
this.shadowNode['_objFlags'] |= cc.Object['Flags'].HideInHierarchy;
|
||||
this.shadowNode['_objFlags'] |= cc.Object['Flags'].LockedInEditor;
|
||||
}
|
||||
this.nodeOpacity = this.node.opacity;
|
||||
this.model = this.node.getComponent(cc.Animation);
|
||||
this.model && (this.model.currentClip = this.model.defaultClip);
|
||||
this.updateShadowNum();
|
||||
this.updateDeltTime();
|
||||
this.updateShadowData();
|
||||
this.updateColor();
|
||||
this.updateOpacity();
|
||||
}
|
||||
|
||||
protected onEnable() {
|
||||
if (this.active && this.shadowNode) {
|
||||
this.shadowNode.active = true;
|
||||
this.shadowData.length && this.updateShadowData();
|
||||
}
|
||||
}
|
||||
|
||||
protected onDisable() {
|
||||
this.shadowNode.active = false;
|
||||
}
|
||||
|
||||
protected update() {
|
||||
if (this.nodeOpacity !== this.node.opacity) {
|
||||
this.nodeOpacity = this.node.opacity;
|
||||
this.updateOpacity();
|
||||
}
|
||||
for (let i = this.shadowNum * this.deltTime; i > 0; --i) {
|
||||
let cur = this.shadowData[i];
|
||||
let prev = this.shadowData[i - 1];
|
||||
cur.x = prev.x;
|
||||
cur.y = prev.y;
|
||||
cur.scaleX = prev.scaleX;
|
||||
cur.scaleY = prev.scaleY;
|
||||
cur.angle = prev.angle;
|
||||
cur.actionName = prev.actionName;
|
||||
cur.frameTime = prev.frameTime;
|
||||
}
|
||||
let data = this.shadowData[0];
|
||||
data.x = this.node.x;
|
||||
data.y = this.node.y;
|
||||
data.scaleX = this.node.scaleX;
|
||||
data.scaleY = this.node.scaleY;
|
||||
data.angle = this.node.angle;
|
||||
if (this.model !== null) {
|
||||
data.actionName = this.model.currentClip.name;
|
||||
data.frameTime = this.model.getAnimationState(data.actionName).time;
|
||||
}
|
||||
for (let i = this.shadowNum - 1; i >= 0; --i) {
|
||||
let node = this.shadowNode.children[i];
|
||||
data = this.shadowData[this.deltTime * (i + 1)];
|
||||
node.x = data.x;
|
||||
node.y = data.y;
|
||||
node.scaleX = data.scaleX * data.scale;
|
||||
node.scaleY = data.scaleY * data.scale;
|
||||
node.angle = data.angle;
|
||||
let model = node.getComponent(cc.Animation);
|
||||
model !== null && model.play(data.actionName, data.frameTime);
|
||||
}
|
||||
}
|
||||
|
||||
private updateShadowNum() {
|
||||
this.shadowNode.removeAllChildren();
|
||||
this.shadowNode.destroyAllChildren();
|
||||
for (let i = 0, len = this.shadowNum; i < len; ++i) {
|
||||
let node = cc.instantiate(this.node);
|
||||
node.name = 'Shadow' + i;
|
||||
let cmps = node['_components'];
|
||||
for (let j = cmps.length - 1; j >= 0; --j) {
|
||||
if (cmps[j] instanceof cc.RenderComponent) continue;
|
||||
if (cmps[j] instanceof cc.Animation) continue;
|
||||
cmps[j].destroy();
|
||||
}
|
||||
node.setParent(this.shadowNode);
|
||||
}
|
||||
}
|
||||
|
||||
private updateDeltTime() {
|
||||
this.shadowData = [];
|
||||
for (let i = this.shadowNum * this.deltTime; i >= 0; --i) {
|
||||
this.shadowData[i] = new ShadowData();
|
||||
}
|
||||
}
|
||||
|
||||
private updateShadowData() {
|
||||
let scaleDelt = (1 - this.shadowScale) / (this.shadowNum * this.deltTime);
|
||||
for (let i = this.shadowNum * this.deltTime; i >= 0; --i) {
|
||||
let data = this.shadowData[i];
|
||||
data.x = this.node.x;
|
||||
data.y = this.node.y;
|
||||
data.scaleX = this.node.scaleX;
|
||||
data.scaleY = this.node.scaleY;
|
||||
data.scale = 1 - i * scaleDelt;
|
||||
data.angle = this.node.angle;
|
||||
if (this.model !== null) {
|
||||
data.actionName = this.model.currentClip.name;
|
||||
data.frameTime = this.model.getAnimationState(data.actionName).time;
|
||||
this.model.play(data.actionName, data.frameTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private setColor(node: cc.Node, color: cc.Color) {
|
||||
node.color = color;
|
||||
for (let i = node.childrenCount - 1; i >= 0; --i) {
|
||||
this.setColor(node.children[i], color);
|
||||
}
|
||||
}
|
||||
|
||||
private updateColor() {
|
||||
this.setColor(this.shadowNode, this.shadowColor);
|
||||
}
|
||||
|
||||
private updateOpacity() {
|
||||
this.shadowNode.opacity = this.opacity * this.node.opacity / 255;
|
||||
}
|
||||
|
||||
protected onDestroy() {
|
||||
if (cc.isValid(this.shadowNode)) {
|
||||
this.shadowNode.removeFromParent();
|
||||
this.shadowNode.destroy();
|
||||
};
|
||||
}
|
||||
}
|
10
assets/Script/ActionShadow.ts.meta
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "1a585efd-baca-4d06-a2e7-a6c756643273",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
21
assets/Script/Helloworld.ts
Normal file
@ -0,0 +1,21 @@
|
||||
const {ccclass, property} = cc._decorator;
|
||||
|
||||
@ccclass
|
||||
export default class Helloworld extends cc.Component {
|
||||
heroNode: cc.Node = null;
|
||||
touchX: number = 0;
|
||||
touchY: number = 0;
|
||||
start () {
|
||||
this.heroNode = this.node.getChildByName('Enemy');
|
||||
this.heroNode.on(cc.Node.EventType.TOUCH_START, (event) => {
|
||||
let pos = event.getLocation();
|
||||
this.touchX = pos.x - this.heroNode.x;
|
||||
this.touchY = pos.y - this.heroNode.y;
|
||||
});
|
||||
this.heroNode.on(cc.Node.EventType.TOUCH_MOVE, (event) => {
|
||||
let pos = event.getLocation();
|
||||
this.heroNode.x = pos.x - this.touchX;
|
||||
this.heroNode.y = pos.y - this.touchY;
|
||||
});
|
||||
}
|
||||
}
|
10
assets/Script/Helloworld.ts.meta
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "e1b90feb-a217-4493-849d-9a611900d683",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
13
assets/Texture.meta
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"ver": "1.1.3",
|
||||
"uuid": "7b81d4e8-ec84-4716-968d-500ac1d78a54",
|
||||
"importer": "folder",
|
||||
"isBundle": false,
|
||||
"bundleName": "",
|
||||
"priority": 1,
|
||||
"compressionType": {},
|
||||
"optimizeHotUpdate": {},
|
||||
"inlineSpriteFrames": {},
|
||||
"isRemoteBundle": {},
|
||||
"subMetas": {}
|
||||
}
|
49
assets/Texture/Enemy.anim
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
"__type__": "cc.AnimationClip",
|
||||
"_name": "Enemy",
|
||||
"_objFlags": 0,
|
||||
"_native": "",
|
||||
"_duration": 2.0166666666666666,
|
||||
"sample": 60,
|
||||
"speed": 1,
|
||||
"wrapMode": 2,
|
||||
"curveData": {
|
||||
"comps": {
|
||||
"cc.Sprite": {
|
||||
"spriteFrame": [
|
||||
{
|
||||
"frame": 0.016666666666666666,
|
||||
"value": {
|
||||
"__uuid__": "095037c3-3d64-4271-9765-3618bf126cfb"
|
||||
}
|
||||
},
|
||||
{
|
||||
"frame": 0.5,
|
||||
"value": {
|
||||
"__uuid__": "b7eb72f8-b83d-46af-8655-1973518a1f6a"
|
||||
}
|
||||
},
|
||||
{
|
||||
"frame": 1,
|
||||
"value": {
|
||||
"__uuid__": "b4b90137-3a8e-48b8-9faa-ae9b30fa7928"
|
||||
}
|
||||
},
|
||||
{
|
||||
"frame": 1.5,
|
||||
"value": {
|
||||
"__uuid__": "4a368e85-1e8c-4e15-b64c-2441b5123882"
|
||||
}
|
||||
},
|
||||
{
|
||||
"frame": 2,
|
||||
"value": {
|
||||
"__uuid__": "095037c3-3d64-4271-9765-3618bf126cfb"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"events": []
|
||||
}
|
6
assets/Texture/Enemy.anim.meta
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"ver": "2.1.2",
|
||||
"uuid": "4a0ec569-7488-45d6-9546-2a3adf8850e8",
|
||||
"importer": "animation-clip",
|
||||
"subMetas": {}
|
||||
}
|
BIN
assets/Texture/Enemy0.png
Normal file
After Width: | Height: | Size: 37 KiB |
38
assets/Texture/Enemy0.png.meta
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "5f628544-a50a-4599-8201-3299ce202a65",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 170,
|
||||
"height": 153,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"Enemy0": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "095037c3-3d64-4271-9765-3618bf126cfb",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "5f628544-a50a-4599-8201-3299ce202a65",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 170,
|
||||
"height": 153,
|
||||
"rawWidth": 170,
|
||||
"rawHeight": 153,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/Texture/Enemy1.png
Normal file
After Width: | Height: | Size: 34 KiB |
38
assets/Texture/Enemy1.png.meta
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "3b526cb8-904b-426d-bf73-3303a230d937",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 187,
|
||||
"height": 162,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"Enemy1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b7eb72f8-b83d-46af-8655-1973518a1f6a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "3b526cb8-904b-426d-bf73-3303a230d937",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 187,
|
||||
"height": 162,
|
||||
"rawWidth": 187,
|
||||
"rawHeight": 162,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/Texture/Enemy2.png
Normal file
After Width: | Height: | Size: 28 KiB |
38
assets/Texture/Enemy2.png.meta
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "dad8692b-064c-46ad-bed5-d1d99e06448c",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 163,
|
||||
"height": 141,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"Enemy2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "4a368e85-1e8c-4e15-b64c-2441b5123882",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "dad8692b-064c-46ad-bed5-d1d99e06448c",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 163,
|
||||
"height": 141,
|
||||
"rawWidth": 163,
|
||||
"rawHeight": 141,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/Texture/Enemy3.png
Normal file
After Width: | Height: | Size: 33 KiB |
38
assets/Texture/Enemy3.png.meta
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "6534d5cf-c643-45f8-91d6-57be3c778127",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 172,
|
||||
"height": 163,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"Enemy3": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "b4b90137-3a8e-48b8-9faa-ae9b30fa7928",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "6534d5cf-c643-45f8-91d6-57be3c778127",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 172,
|
||||
"height": 163,
|
||||
"rawWidth": 172,
|
||||
"rawHeight": 163,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/Texture/HelloWorld.png
Normal file
After Width: | Height: | Size: 14 KiB |
38
assets/Texture/HelloWorld.png.meta
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "6aa0aa6a-ebee-4155-a088-a687a6aadec4",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 256,
|
||||
"height": 256,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"HelloWorld": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "31bc895a-c003-4566-a9f3-2e54ae1c17dc",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "6aa0aa6a-ebee-4155-a088-a687a6aadec4",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 3.5,
|
||||
"offsetY": 1,
|
||||
"trimX": 44,
|
||||
"trimY": 14,
|
||||
"width": 175,
|
||||
"height": 226,
|
||||
"rawWidth": 256,
|
||||
"rawHeight": 256,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
BIN
assets/Texture/singleColor.png
Normal file
After Width: | Height: | Size: 82 B |
38
assets/Texture/singleColor.png.meta
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "a8027877-d8d6-4645-97a0-52d4a0123dba",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 2,
|
||||
"height": 2,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"singleColor": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "410fb916-8721-4663-bab8-34397391ace7",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "a8027877-d8d6-4645-97a0-52d4a0123dba",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 2,
|
||||
"height": 2,
|
||||
"rawWidth": 2,
|
||||
"rawHeight": 2,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
32207
creator.d.ts
vendored
Normal file
13
jsconfig.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es6",
|
||||
"module": "commonjs"
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"library",
|
||||
"local",
|
||||
"settings",
|
||||
"temp"
|
||||
]
|
||||
}
|
8
project.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"engine": "cocos2d-html5",
|
||||
"packages": "packages",
|
||||
"version": "2.4.11",
|
||||
"name": "ActionShadowDemo",
|
||||
"id": "1f214bec-9b25-4e6e-aaa2-b821ba49e0b3",
|
||||
"isNew": false
|
||||
}
|
13
settings/builder.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"excludeScenes": [],
|
||||
"orientation": {
|
||||
"landscapeLeft": true,
|
||||
"landscapeRight": true,
|
||||
"portrait": false,
|
||||
"upsideDown": false
|
||||
},
|
||||
"packageName": "org.cocos2d.helloworld",
|
||||
"startScene": "2d2f792f-a40c-49bb-a189-ed176a246e49",
|
||||
"title": "hello_world",
|
||||
"webOrientation": "auto"
|
||||
}
|
7
settings/builder.panel.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"excludeScenes": [],
|
||||
"packageName": "org.cocos2d.helloworld",
|
||||
"platform": "web-mobile",
|
||||
"startScene": "2d2f792f-a40c-49bb-a189-ed176a246e49",
|
||||
"title": "HelloWorld"
|
||||
}
|
35
settings/project.json
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
"collision-matrix": [
|
||||
[
|
||||
true
|
||||
]
|
||||
],
|
||||
"excluded-modules": [],
|
||||
"group-list": [
|
||||
"default"
|
||||
],
|
||||
"start-scene": "2d2f792f-a40c-49bb-a189-ed176a246e49",
|
||||
"design-resolution-width": 960,
|
||||
"design-resolution-height": 640,
|
||||
"fit-width": false,
|
||||
"fit-height": true,
|
||||
"use-project-simulator-setting": false,
|
||||
"simulator-orientation": false,
|
||||
"use-customize-simulator": false,
|
||||
"simulator-resolution": {
|
||||
"width": 960,
|
||||
"height": 640
|
||||
},
|
||||
"last-module-event-record-time": 0,
|
||||
"assets-sort-type": "name",
|
||||
"facebook": {
|
||||
"enable": false,
|
||||
"appID": "",
|
||||
"live": {
|
||||
"enable": false
|
||||
},
|
||||
"audience": {
|
||||
"enable": false
|
||||
}
|
||||
}
|
||||
}
|
6
settings/services.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"game": {
|
||||
"name": "未知游戏",
|
||||
"appid": "UNKNOW"
|
||||
}
|
||||
}
|
BIN
template-banner.png
Normal file
After Width: | Height: | Size: 26 KiB |
5
template.json
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "TEMPLATES.helloworld-ts.name",
|
||||
"desc": "TEMPLATES.helloworld-ts.desc",
|
||||
"banner": "template-banner.png"
|
||||
}
|
19
tsconfig.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [ "es2015", "es2017", "dom" ],
|
||||
"target": "es5",
|
||||
"experimentalDecorators": true,
|
||||
"skipLibCheck": true,
|
||||
"outDir": "temp/vscode-dist",
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"library",
|
||||
"local",
|
||||
"temp",
|
||||
"build",
|
||||
"settings"
|
||||
]
|
||||
}
|