main
cuongnm2 2024-05-30 09:24:12 +07:00
parent c630a5e2b3
commit eebf345227
1262 changed files with 187602 additions and 6360 deletions

View File

@ -204,6 +204,7 @@ declare global {
trunc(): number;
truncDigits(digits: number): number;
toFixedDown(digits: number): number;
claim(min: number, max: number): number;
}
interface String {
@ -296,6 +297,7 @@ Number.prototype.truncDigits = function (digits: number): number {
return digits > 0 ? Number(this).toFixedDown(digits) : (Math.trunc(Number(this) * Math.pow(10, digits)) / Math.pow(10, digits));
}
Number.prototype.trunc = function (): number {
return Math.trunc(Number(this));
}
@ -306,6 +308,17 @@ Number.prototype.toFixedDown = function (digits: number): number {
return m ? parseFloat(m[1]) : Number(this).valueOf();
}
Number.prototype.truncDigits = function (digits: number): number {
return digits > 0 ? Number(this).toFixedDown(digits) : (Math.trunc(Number(this) * Math.pow(10, digits)) / Math.pow(10, digits));
}
Number.prototype.claim = function (min: number, max: number): number {
var result = Math.max(Number(this), min);
result = Math.min(Number(this), max);
return result;
}
Vec3.prototype.toVec2 = function (): Vec2{
return new Vec2(this.x, this.y);
}

View File

@ -12,7 +12,7 @@ export class UmPopupBase extends Component {
_is_black_panel: boolean = true;
public popup_pos = Vec3.ZERO;
private OPACITY_BLACK = 150;
private OPACITY_BLACK = 180;
DURATION_SHOW_ZOOM = 0.35;
DURATION_HIDE_ZOOM = 0.35;
@ -22,6 +22,8 @@ export class UmPopupBase extends Component {
DURATION_SHOW_MOVE = 0.35;
DURATION_HIDE_MOVE = 0.35;
isDestroyOnHide = false;
public static TRANSITIONS_TYPE = {
ZOOM_IN: "Z",
MOVE_IN_TOP: "T",
@ -38,10 +40,10 @@ export class UmPopupBase extends Component {
ORIGIN: 4
}
onLoad() {
if (this.bgBlack) {
this.bgBlack.node.on(Button.EventType.CLICK, this.onBtnCloseClicked, this);
}
protected onLoad() {
// if (this.bgBlack) {
// this.bgBlack.node.on(Button.EventType.CLICK, this.onBtnCloseClicked, this);
// }
}
public show(callback: Function = null!) {
@ -74,24 +76,30 @@ export class UmPopupBase extends Component {
if (this.bgPopup) {
let duration = this.DURATION_HIDE_ZOOM;
tween(this.bgPopup.node).to(duration, { scale: new Vec3(this.SCALE_END_HIDE_ZOOM, this.SCALE_END_HIDE_ZOOM, 1) }, { easing: 'backIn' }).call(() => {
if (this.isDestroyOnHide) {
this.node.destroyAllChildren();
this.node.destroy();
}
else this.node?.setNodeActive(false);
callback?.();
this.node.destroyAllChildren();
this.node.destroy();
}).start();
tween(this.bgPopup.node).delay(0.1).call(() => this.bgPopup.node.onFadeOut(duration)).start();
}
else {
this.isDestroyOnHide ? this.node?.destroy() : this.node?.setNodeActive(false);
callback?.();
this.node.destroy();
}
}
else {
this.isDestroyOnHide ? this.node?.destroy() : this.node?.setNodeActive(false);
callback?.();
this.node.destroy();
}
}
private _fadeInBlackPanel() {
if (this.bgBlack) {
this.bgBlack.node.onFadeIn(this.DURATION_SHOW_MOVE, this.OPACITY_BLACK);
@ -111,6 +119,7 @@ export class UmPopupBase extends Component {
this.show();
}
else {
this.bgPopup.setOpacity(255);
this.bgPopup.getComponent(Widget)?.updateAlignment();
let pos = new Vec3(this.bgPopup.node.position);
this.popup_pos = pos;
@ -208,9 +217,12 @@ export class UmPopupBase extends Component {
if (this.bgBlack) {
this.bgBlack.node.active = false;
}
if (this.isDestroyOnHide) {
this.node.destroyAllChildren();
this.node.destroy();
}
else this.node?.setNodeActive(false);
callback?.();
this.node.destroyAllChildren();
this.node.destroy();
}).start();
}
}

View File

@ -747,6 +747,21 @@ export class UmUtil {
spine?.setMix(anim2, anim1, mixTime);
}
public static removeAllNonDigit(input): number {
return Number(input.replace(/\D/g, ''));//remove all non-digits
}
public static removeAllDigits(input): string {
return input.replace(/[0-9]/g, '');
}
public static degToRad(deg: number): number {
return deg * (Math.PI / 180.0);
}
public static radToDeg(rad: number): number {
return rad * 180.0 / Math.PI;
}
// public static subtractTwoVector3(a: Vec3, b: Vec3) {
// var result = new Vec3();
// Vec3.subtract(result, a, b);

9
assets/cc-game/TA.meta Normal file
View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "70bf5547-aa22-4e4c-b1ea-63cd67bb2126",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "f3db3d83-1fd2-440f-9cdb-0f9fb1036c49",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,216 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "Skill_Card",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 60,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 1,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 13
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ColorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channels": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
}
]
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"color"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "Skill_Card_Glow"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 8
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 10
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.5,
1
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@ -0,0 +1,13 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "65c125a0-fccf-4be9-931b-abfc5272823f",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "Skill_Card"
}
}

View File

@ -0,0 +1,171 @@
[
{
"__type__": "cc.AnimationClip",
"_name": "wave-item",
"_objFlags": 0,
"__editorExtras__": {
"embeddedPlayerGroups": []
},
"_native": "",
"sample": 60,
"speed": 1,
"wrapMode": 2,
"enableTrsBlending": false,
"_duration": 0.6666666666666666,
"_hash": 500763545,
"_tracks": [
{
"__id__": 1
}
],
"_exoticAnimation": null,
"_events": [],
"_embeddedPlayers": [],
"_additiveSettings": {
"__id__": 13
},
"_auxiliaryCurveEntries": []
},
{
"__type__": "cc.animation.ColorTrack",
"_binding": {
"__type__": "cc.animation.TrackBinding",
"path": {
"__id__": 2
},
"proxy": null
},
"_channels": [
{
"__id__": 5
},
{
"__id__": 7
},
{
"__id__": 9
},
{
"__id__": 11
}
]
},
{
"__type__": "cc.animation.TrackPath",
"_paths": [
{
"__id__": 3
},
{
"__id__": 4
},
"color"
]
},
{
"__type__": "cc.animation.HierarchyPath",
"path": "glow"
},
{
"__type__": "cc.animation.ComponentPath",
"component": "cc.Sprite"
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 6
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 8
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 10
}
},
{
"__type__": "cc.RealCurve",
"_times": [],
"_values": [],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.animation.Channel",
"_curve": {
"__id__": 12
}
},
{
"__type__": "cc.RealCurve",
"_times": [
0,
0.3333333432674408,
0.6666666865348816
],
"_values": [
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 0,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
},
{
"__type__": "cc.RealKeyframeValue",
"interpolationMode": 0,
"tangentWeightMode": 0,
"value": 255,
"rightTangent": 0,
"rightTangentWeight": 1,
"leftTangent": 0,
"leftTangentWeight": 1,
"easingMethod": 0,
"__editorExtras__": null
}
],
"preExtrapolation": 1,
"postExtrapolation": 1
},
{
"__type__": "cc.AnimationClipAdditiveSettings",
"enabled": false,
"refClip": null
}
]

View File

@ -0,0 +1,13 @@
{
"ver": "2.0.3",
"importer": "animation-clip",
"imported": true,
"uuid": "0fe978f7-4d83-4f02-895f-04aa6b10fb50",
"files": [
".cconb"
],
"subMetas": {},
"userData": {
"name": "wave-item"
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "e4b56bb3-eadc-454d-b63c-ef63f0ba65cc",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "ee7496ce-2d2a-4770-81ef-27a6ecfc9c77@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"67e88574-f554-4663-8250-eb4dca4fb80b","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "3343558b-7c98-4f80-92b8-a93c00ade8ee@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"8f5ef049-37f7-4a6a-9f55-487a2e1c889e","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "dfd7fb79-71c9-4ace-ab57-75c20d11719f@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"00e028e7-1c2e-4932-9999-aa3222745703","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "569cba29-ee5d-421b-ac9a-0db158aecb6c@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"15767831-bfe1-425e-bd8d-84fdc4b7383e","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "ca9cac3d-9d4d-4ecb-ad5c-32e9df103148@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"2cfa008b-4062-4f04-a47f-d2f23cf51575","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "acaf3636-d9f1-4793-8286-6864f97f7f88@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"5a50bf01-1725-4068-9440-66a0ce59f03e","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "de5edd78-833e-4da1-aebb-2c2aa6b34b40@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"1f71d064-b19a-440b-9e8f-1ebfa9756e4b","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "d78e9706-3f29-4e0e-9c56-10513fa44cbb@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"b13b73f0-6f27-48e5-bfd5-cb5d0ccd2697","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "63ad5861-547d-4ad1-ae2b-15195c2400a1@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"2904334c-3d13-4ca3-8547-9f4e7e3f6a44","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "04155d46-547c-4efa-b5dc-1507a1e899d9@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"90449d7b-403d-41bd-b59a-24d822d1427d","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "0bbe74d7-dcd8-42c6-8cca-d1f8f1920f32@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"0eafe77f-d13c-4cdf-8f44-daa6bfa41d6e","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "7c85d4f1-944c-4189-b1ef-4000a5405831@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"c0457144-2500-4753-bd7d-98177b1754e1","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "4c6b3624-d91f-4718-9a93-097e309ab7f3@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"14817969-5003-4769-8384-cc2aeee1a8fe","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "b7467e1f-3763-4680-9b66-d1cc347b962b@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"e72e1d84-1192-473d-b77a-acd42de50736","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "a7e2116d-d133-4a12-aee1-2b4aca19d65f@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"dbbb96a3-1690-4d2b-bb85-c68de63d10cd","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "517a4d22-fa33-4908-a928-a82599e56758@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"5fe650f8-537d-41b4-acda-8fc0f93ddd60","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "da3b717f-86a4-4b51-972f-27182d475d19@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"694eaa31-2eee-43f6-aa26-03210cfac3d2","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "a317c1d9-3a88-46ff-bf80-7d4fc2be58e5@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"06daf0ef-b3e1-4acd-b092-4146841dfbb6","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "d7af8367-2152-4138-ba43-77227a88f73e@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"c1b501ee-687b-4fe5-85a1-70705fde1263","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "d7af8367-2152-4138-ba43-77227a88f73e@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"3041c9f4-d257-44e1-9405-3950d6cc420b","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "c3d924a1-1898-46be-bff3-b2b506407b7e@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"27214dc0-7537-4882-9955-1e5a65540e97","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,52 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "a9f62aef-ef7a-4b13-83c5-9b2709a7dae4@6c48a",
"__expectedType__": "cc.Texture2D"
},
"mainTiling_Offset": {
"__type__": "cc.Vec4",
"x": 1,
"y": 0.95,
"z": 0,
"w": 0
}
},
{}
]
}

View File

@ -0,0 +1,11 @@
{
"ver": "1.0.21",
"importer": "material",
"imported": true,
"uuid": "248c6d29-226f-4600-9a2c-2d635638afa7",
"files": [
".json"
],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "784b0dab-bd3a-455a-bd57-a1be30e76431@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"d82837df-965a-48f4-a612-dd660cf9b7e6","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 1,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "a2538db0-6d09-4dff-99a2-6351fd5991e1@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"0af86b27-fa6b-4a40-91b8-050eaaaab161","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "0ab2be37-529b-4a9e-92e6-7fc843e41bf1@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"579808cb-a78c-4e73-ad60-6f57078d8ecc","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "f01ff4df-ade6-424c-a179-5cc3b90b09e5@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"4edade73-9bdb-49b1-bfeb-729653ee2332","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,52 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "f44eabbf-d3cb-4b97-8bda-7962eaff8d18@6c48a",
"__expectedType__": "cc.Texture2D"
},
"mainTiling_Offset": {
"__type__": "cc.Vec4",
"x": 1,
"y": 0.95,
"z": 0,
"w": 0
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"a79d01d7-3068-4d3a-819b-e4e6c9169204","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,45 @@
{
"__type__": "cc.Material",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"_native": "",
"_effectAsset": {
"__uuid__": "d1346436-ac96-4271-b863-1f4fdead95b0",
"__expectedType__": "cc.EffectAsset"
},
"_techIdx": 0,
"_defines": [
{},
{}
],
"_states": [
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
},
{
"rasterizerState": {},
"depthStencilState": {},
"blendState": {
"targets": [
{}
]
}
}
],
"_props": [
{
"mainTexture": {
"__uuid__": "98c82753-ebf1-4f4c-9954-2c75dd7c1df9@6c48a",
"__expectedType__": "cc.Texture2D"
}
},
{}
]
}

View File

@ -0,0 +1 @@
{"ver":"1.0.21","importer":"material","imported":true,"uuid":"f88f47d9-40f2-4ec4-90b4-11befdc1fe36","files":[".json"],"subMetas":{},"userData":{}}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "1eec61b2-39b4-4bc8-a4c4-fdeeb9e187cb",
"files": [],
"subMetas": {},
"userData": {}
}

Binary file not shown.

View File

@ -0,0 +1,147 @@
{
"ver": "2.3.12",
"importer": "fbx",
"imported": true,
"uuid": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4",
"files": [],
"subMetas": {
"198c7": {
"importer": "gltf-mesh",
"uuid": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@198c7",
"displayName": "",
"id": "198c7",
"name": "ETFX_Rocket2.mesh",
"userData": {
"gltfIndex": 0,
"triangleCount": 176
},
"ver": "1.1.1",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {}
},
"ace8f": {
"importer": "gltf-embeded-image",
"uuid": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@ace8f",
"displayName": "",
"id": "ace8f",
"name": "Map #4.image",
"userData": {
"gltfIndex": 0,
"fixAlphaTransparencyArtifacts": true,
"hasAlpha": true,
"type": "texture"
},
"ver": "1.0.3",
"imported": true,
"files": [
".json",
".png"
],
"subMetas": {}
},
"f8008": {
"importer": "texture",
"uuid": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@f8008",
"displayName": "",
"id": "f8008",
"name": "Map #4.texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@ace8f"
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"74c03": {
"importer": "gltf-material",
"uuid": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@74c03",
"displayName": "",
"id": "74c03",
"name": "Material #4.material",
"userData": {
"gltfIndex": 0
},
"ver": "1.0.14",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"59f21": {
"importer": "gltf-scene",
"uuid": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@59f21",
"displayName": "",
"id": "59f21",
"name": "ETFX_Rocket2.prefab",
"userData": {
"gltfIndex": 0
},
"ver": "1.0.14",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"imageMetas": [
{
"name": "Map #4",
"uri": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@ace8f"
}
],
"fbx": {
"smartMaterialEnabled": true
},
"redirect": "ad372e0d-0418-4b39-95d5-3bcd234bbdd4@59f21",
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
},
"assetFinder": {
"meshes": [
"ad372e0d-0418-4b39-95d5-3bcd234bbdd4@198c7"
],
"skeletons": [],
"textures": [
"ad372e0d-0418-4b39-95d5-3bcd234bbdd4@f8008"
],
"materials": [
"ad372e0d-0418-4b39-95d5-3bcd234bbdd4@74c03"
],
"scenes": [
"ad372e0d-0418-4b39-95d5-3bcd234bbdd4@59f21"
]
}
}
}

Binary file not shown.

View File

@ -0,0 +1,147 @@
{
"ver": "2.3.12",
"importer": "fbx",
"imported": true,
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe",
"files": [],
"subMetas": {
"c6160": {
"importer": "gltf-mesh",
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@c6160",
"displayName": "",
"id": "c6160",
"name": "Cylinder001.mesh",
"userData": {
"gltfIndex": 0,
"triangleCount": 128
},
"ver": "1.1.1",
"imported": true,
"files": [
".bin",
".json"
],
"subMetas": {}
},
"ace8f": {
"importer": "gltf-embeded-image",
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@ace8f",
"displayName": "",
"id": "ace8f",
"name": "Map #4.image",
"userData": {
"gltfIndex": 0,
"fixAlphaTransparencyArtifacts": true,
"hasAlpha": true,
"type": "texture"
},
"ver": "1.0.3",
"imported": true,
"files": [
".json",
".png"
],
"subMetas": {}
},
"f8008": {
"importer": "texture",
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@f8008",
"displayName": "",
"id": "f8008",
"name": "Map #4.texture",
"userData": {
"wrapModeS": "repeat",
"wrapModeT": "repeat",
"minfilter": "linear",
"magfilter": "linear",
"mipfilter": "none",
"anisotropy": 0,
"isUuid": true,
"imageUuidOrDatabaseUri": "b335be51-4921-4303-946f-a0ee8e7846fe@ace8f"
},
"ver": "1.0.22",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"1fbcb": {
"importer": "gltf-material",
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@1fbcb",
"displayName": "",
"id": "1fbcb",
"name": "Material #28.material",
"userData": {
"gltfIndex": 0
},
"ver": "1.0.14",
"imported": true,
"files": [
".json"
],
"subMetas": {}
},
"63bff": {
"importer": "gltf-scene",
"uuid": "b335be51-4921-4303-946f-a0ee8e7846fe@63bff",
"displayName": "",
"id": "63bff",
"name": "aura_straight.prefab",
"userData": {
"gltfIndex": 0
},
"ver": "1.0.14",
"imported": true,
"files": [
".json"
],
"subMetas": {}
}
},
"userData": {
"imageMetas": [
{
"name": "Map #4",
"uri": "b335be51-4921-4303-946f-a0ee8e7846fe@ace8f"
}
],
"fbx": {
"smartMaterialEnabled": true
},
"redirect": "b335be51-4921-4303-946f-a0ee8e7846fe@63bff",
"lods": {
"enable": false,
"hasBuiltinLOD": false,
"options": [
{
"screenRatio": 0.25,
"faceCount": 1
},
{
"screenRatio": 0.125,
"faceCount": 0.25
},
{
"screenRatio": 0.01,
"faceCount": 0.1
}
]
},
"assetFinder": {
"meshes": [
"b335be51-4921-4303-946f-a0ee8e7846fe@c6160"
],
"skeletons": [],
"textures": [
"b335be51-4921-4303-946f-a0ee8e7846fe@f8008"
],
"materials": [
"b335be51-4921-4303-946f-a0ee8e7846fe@1fbcb"
],
"scenes": [
"b335be51-4921-4303-946f-a0ee8e7846fe@63bff"
]
}
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "15f295bd-aa12-47b8-a69c-2243d942e2ec",
"files": [],
"subMetas": {},
"userData": {}
}

View File

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>angle</key>
<integer>360</integer>
<key>angleVariance</key>
<integer>360</integer>
<key>blendFuncDestination</key>
<integer>1</integer>
<key>blendFuncSource</key>
<integer>2</integer>
<key>duration</key>
<integer>-1</integer>
<key>emitterType</key>
<integer>0</integer>
<key>finishColorAlpha</key>
<real>0.8392156862745098</real>
<key>finishColorBlue</key>
<real>0.07450980392156863</real>
<key>finishColorGreen</key>
<real>0.6313725490196078</real>
<key>finishColorRed</key>
<real>0.6784313725490196</real>
<key>finishColorVarianceAlpha</key>
<integer>0</integer>
<key>finishColorVarianceBlue</key>
<integer>0</integer>
<key>finishColorVarianceGreen</key>
<integer>0</integer>
<key>finishColorVarianceRed</key>
<integer>0</integer>
<key>finishParticleSize</key>
<real>30.31999969482422</real>
<key>finishParticleSizeVariance</key>
<integer>0</integer>
<key>gravityx</key>
<real>0.25</real>
<key>gravityy</key>
<real>0.8600000143051147</real>
<key>maxParticles</key>
<integer>50</integer>
<key>maxRadius</key>
<integer>0</integer>
<key>maxRadiusVariance</key>
<integer>0</integer>
<key>minRadius</key>
<integer>0</integer>
<key>particleLifespan</key>
<real>0.20000000298023224</real>
<key>particleLifespanVariance</key>
<real>0.5</real>
<key>radialAccelVariance</key>
<real>65.79000091552734</real>
<key>radialAcceleration</key>
<real>-671.0499877929688</real>
<key>rotatePerSecond</key>
<integer>0</integer>
<key>rotatePerSecondVariance</key>
<integer>0</integer>
<key>rotationEnd</key>
<real>-47.369998931884766</real>
<key>rotationEndVariance</key>
<real>-142.11000061035156</real>
<key>rotationStart</key>
<real>-47.369998931884766</real>
<key>rotationStartVariance</key>
<integer>0</integer>
<key>sourcePositionVariancex</key>
<integer>7</integer>
<key>sourcePositionVariancey</key>
<integer>7</integer>
<key>sourcePositionx</key>
<real>373.7277526855469</real>
<key>sourcePositiony</key>
<real>478.40472412109375</real>
<key>speed</key>
<integer>0</integer>
<key>speedVariance</key>
<real>190.7899932861328</real>
<key>startColorAlpha</key>
<real>0.6392156862745098</real>
<key>startColorBlue</key>
<real>0.33725490196078434</real>
<key>startColorGreen</key>
<real>0.7843137254901961</real>
<key>startColorRed</key>
<real>0.792156862745098</real>
<key>startColorVarianceAlpha</key>
<integer>0</integer>
<key>startColorVarianceBlue</key>
<integer>0</integer>
<key>startColorVarianceGreen</key>
<integer>0</integer>
<key>startColorVarianceRed</key>
<integer>0</integer>
<key>startParticleSize</key>
<real>3.369999885559082</real>
<key>startParticleSizeVariance</key>
<integer>50</integer>
<key>tangentialAccelVariance</key>
<real>65.79000091552734</real>
<key>tangentialAcceleration</key>
<real>-92.11000061035156</real>
<key>positionType</key>
<integer>0</integer>
<key>rotationIsDir</key>
<false/>
<key>minRadiusVariance</key>
<integer>0</integer>
<key>emissionRate</key>
<real>999.999985098839</real>
<key>spriteFrameUuid</key>
<string>24c419ea-63a8-4ea1-a9d0-7fc469489bbc@f9941</string>
</dict>
</plist>

View File

@ -0,0 +1,86 @@
{
"ver": "1.0.2",
"importer": "particle",
"imported": true,
"uuid": "437ebc67-397f-4b8e-bf57-c34dbbaf46b4",
"files": [
".json",
".plist"
],
"subMetas": {},
"userData": {
"totalParticles": 50,
"life": 0.20000000298023224,
"lifeVar": 0.5,
"emissionRate": 999.999985098839,
"duration": -1,
"srcBlendFactor": 2,
"dstBlendFactor": 1,
"startColor": {
"_val": 2740373706,
"r": 202,
"g": 200,
"b": 86,
"a": 163
},
"startColorVar": {
"_val": 0,
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"endColor": {
"_val": 3591610797,
"r": 173,
"g": 161,
"b": 19,
"a": 214
},
"endColorVar": {
"_val": 0,
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"startSize": 3.369999885559082,
"startSizeVar": 50,
"endSize": 30.31999969482422,
"endSizeVar": 0,
"positionType": 0,
"sourcePos": {
"x": 0,
"y": 0
},
"posVar": {
"x": 7,
"y": 7
},
"angle": 360,
"angleVar": 360,
"startSpin": -47.369998931884766,
"startSpinVar": 0,
"endSpin": -47.369998931884766,
"endSpinVar": -142.11000061035156,
"emitterMode": 0,
"gravity": {
"x": 0.25,
"y": 0.8600000143051147
},
"speed": 0,
"speedVar": 190.7899932861328,
"radialAccel": -671.0499877929688,
"radialAccelVar": 65.79000091552734,
"tangentialAccel": -92.11000061035156,
"tangentialAccelVar": 65.79000091552734,
"rotationIsDir": false,
"startRadius": 0,
"startRadiusVar": 0,
"endRadius": 0,
"endRadiusVar": 0,
"rotatePerS": 0,
"rotatePerSVar": 0,
"spriteFrameUuid": "24c419ea-63a8-4ea1-a9d0-7fc469489bbc@f9941"
}
}

View File

@ -0,0 +1,9 @@
{
"ver": "1.2.0",
"importer": "directory",
"imported": true,
"uuid": "73452e8e-083e-48d0-9e7a-d39fc3c23ee4",
"files": [],
"subMetas": {},
"userData": {}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "a8c82b0f-9664-4c09-9e10-38818256de59",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "ActiveIconSkill"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "c975792d-0ce5-485e-b23d-ac0a173d4dd2",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "AppearBoss"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "252afe17-1607-4c8c-a35a-5d2a672e1d47",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "AppearHero"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "9c569d24-268b-4040-bb90-85163ba14ca4",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "AttackNormalHero"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "32c984d3-1f11-459c-be46-f5fed4af477e",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "BarBloodHero"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "db0891c0-78c0-4aef-bc63-3422e82c3e7e",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "EnemyAttack"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "523221e0-2ec0-4a10-a887-6eeb8025adcd",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "FireBallUI"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "122818b6-5660-4e8c-ad37-27f7890c3c61",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "HeroMove"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "4bb4ff61-7495-444a-baa7-1d5a54ad5aa4",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "HitEnemy"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "f1596504-b316-4e16-b81c-97af5aefcb29",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "HitHero"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "8ca99e1a-23f8-440f-aa4c-a58dd818728c",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "IceWall"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,13 @@
{
"ver": "1.1.50",
"importer": "prefab",
"imported": true,
"uuid": "a6ebf327-7269-4d12-9a57-92113268bf68",
"files": [
".json"
],
"subMetas": {},
"userData": {
"syncNodeName": "LavaWall"
}
}

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More