chore: 上传build后的文件

This commit is contained in:
ifengzp 2025-02-16 14:47:23 +08:00
parent fa13bee93b
commit 89c5e73655
166 changed files with 577 additions and 1 deletions

1
.gitignore vendored
View File

@ -5,7 +5,6 @@
library/ library/
temp/ temp/
local/ local/
build/
#///////////////////////////////////////////////////////////////////////////// #/////////////////////////////////////////////////////////////////////////////
# Logs and databases # Logs and databases

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

@ -0,0 +1,99 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>异名 | Cocos Awesome</title>
<!--http://www.html5rocks.com/en/mobile/mobifying/-->
<meta name="viewport"
content="width=device-width,user-scalable=no,initial-scale=1, minimum-scale=1,maximum-scale=1"/>
<!--https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<!-- force webkit on 360 -->
<meta name="renderer" content="webkit"/>
<meta name="force-rendering" content="webkit"/>
<!-- force edge on IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="msapplication-tap-highlight" content="no">
<!-- force full screen on some browser -->
<meta name="full-screen" content="yes"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="360-fullscreen" content="true"/>
<!-- force screen orientation on some browser -->
<meta name="screen-orientation" content="landscape"/>
<meta name="x5-orientation" content="landscape">
<!--fix fireball/issues/3568 -->
<!--<meta name="browsermode" content="application">-->
<meta name="x5-page-mode" content="app">
<!--<link rel="apple-touch-icon" href=".png" />-->
<!--<link rel="apple-touch-icon-precomposed" href=".png" />-->
<link rel="stylesheet" type="text/css" href="style-mobile.c765b.css"/>
<link rel="icon" href="favicon.d6883.ico"/>
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?6d4617374c676efa15316da2519429b8";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</head>
<body>
<canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas>
<div id="splash">
<div class="progress-bar stripes">
<span style="width: 0%"></span>
</div>
</div>
<script src="src/settings.620b6.js" charset="utf-8"></script>
<script src="main.f2510.js" charset="utf-8"></script>
<script type="text/javascript">
(function () {
// open web debugger console
if (typeof VConsole !== 'undefined') {
window.vConsole = new VConsole();
}
var debug = window._CCSettings.debug;
var splash = document.getElementById('splash');
splash.style.display = 'block';
function loadScript (moduleName, cb) {
function scriptLoaded () {
document.body.removeChild(domScript);
domScript.removeEventListener('load', scriptLoaded, false);
cb && cb();
};
var domScript = document.createElement('script');
domScript.async = true;
domScript.src = moduleName;
domScript.addEventListener('load', scriptLoaded, false);
document.body.appendChild(domScript);
}
loadScript(debug ? 'cocos2d-js.js' : 'cocos2d-js-min.70cd9.js', function () {
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
loadScript(debug ? 'physics.js' : 'physics-min.js', window.boot);
}
else {
window.boot();
}
});
})();
</script>
</body>
</html>

View File

@ -0,0 +1,199 @@
window.boot = function () {
var settings = window._CCSettings;
window._CCSettings = undefined;
if ( !settings.debug ) {
var uuids = settings.uuids;
var rawAssets = settings.rawAssets;
var assetTypes = settings.assetTypes;
var realRawAssets = settings.rawAssets = {};
for (var mount in rawAssets) {
var entries = rawAssets[mount];
var realEntries = realRawAssets[mount] = {};
for (var id in entries) {
var entry = entries[id];
var type = entry[1];
// retrieve minified raw asset
if (typeof type === 'number') {
entry[1] = assetTypes[type];
}
// retrieve uuid
realEntries[uuids[id] || id] = entry;
}
}
var scenes = settings.scenes;
for (var i = 0; i < scenes.length; ++i) {
var scene = scenes[i];
if (typeof scene.uuid === 'number') {
scene.uuid = uuids[scene.uuid];
}
}
var packedAssets = settings.packedAssets;
for (var packId in packedAssets) {
var packedIds = packedAssets[packId];
for (var j = 0; j < packedIds.length; ++j) {
if (typeof packedIds[j] === 'number') {
packedIds[j] = uuids[packedIds[j]];
}
}
}
var subpackages = settings.subpackages;
for (var subId in subpackages) {
var uuidArray = subpackages[subId].uuids;
if (uuidArray) {
for (var k = 0, l = uuidArray.length; k < l; k++) {
if (typeof uuidArray[k] === 'number') {
uuidArray[k] = uuids[uuidArray[k]];
}
}
}
}
}
function setLoadingDisplay () {
// Loading splash scene
var splash = document.getElementById('splash');
var progressBar = splash.querySelector('.progress-bar span');
cc.loader.onProgress = function (completedCount, totalCount, item) {
var percent = 100 * completedCount / totalCount;
if (progressBar) {
progressBar.style.width = percent.toFixed(2) + '%';
}
};
splash.style.display = 'block';
progressBar.style.width = '0%';
cc.director.once(cc.Director.EVENT_AFTER_SCENE_LAUNCH, function () {
splash.style.display = 'none';
});
}
var onStart = function () {
cc.loader.downloader._subpackages = settings.subpackages;
cc.view.enableRetina(true);
cc.view.resizeWithBrowserSize(true);
if (cc.sys.isBrowser) {
setLoadingDisplay();
}
if (cc.sys.isMobile) {
if (settings.orientation === 'landscape') {
cc.view.setOrientation(cc.macro.ORIENTATION_LANDSCAPE);
}
else if (settings.orientation === 'portrait') {
cc.view.setOrientation(cc.macro.ORIENTATION_PORTRAIT);
}
cc.view.enableAutoFullScreen([
cc.sys.BROWSER_TYPE_BAIDU,
cc.sys.BROWSER_TYPE_WECHAT,
cc.sys.BROWSER_TYPE_MOBILE_QQ,
cc.sys.BROWSER_TYPE_MIUI,
].indexOf(cc.sys.browserType) < 0);
}
// Limit downloading max concurrent task to 2,
// more tasks simultaneously may cause performance draw back on some android system / browsers.
// You can adjust the number based on your own test result, you have to set it before any loading process to take effect.
if (cc.sys.isBrowser && cc.sys.os === cc.sys.OS_ANDROID) {
cc.macro.DOWNLOAD_MAX_CONCURRENT = 2;
}
function loadScene(launchScene) {
cc.director.loadScene(launchScene,
function (err) {
if (!err) {
if (cc.sys.isBrowser) {
// show canvas
var canvas = document.getElementById('GameCanvas');
canvas.style.visibility = '';
var div = document.getElementById('GameDiv');
if (div) {
div.style.backgroundImage = '';
}
}
cc.loader.onProgress = null;
console.log('Success to load scene: ' + launchScene);
}
else if (CC_BUILD) {
setTimeout(function () {
loadScene(launchScene);
}, 1000);
}
}
);
}
var launchScene = settings.launchScene;
// load scene
loadScene(launchScene);
};
// jsList
var jsList = settings.jsList;
var bundledScript = settings.debug ? 'src/project.dev.js' : 'src/project.affec.js';
if (jsList) {
jsList = jsList.map(function (x) {
return 'src/' + x;
});
jsList.push(bundledScript);
}
else {
jsList = [bundledScript];
}
var option = {
id: 'GameCanvas',
scenes: settings.scenes,
debugMode: settings.debug ? cc.debug.DebugMode.INFO : cc.debug.DebugMode.ERROR,
showFPS: settings.debug,
frameRate: 60,
jsList: jsList,
groupList: settings.groupList,
collisionMatrix: settings.collisionMatrix,
};
// init assets
cc.AssetLibrary.init({
libraryPath: 'res/import',
rawAssetsBase: 'res/raw-',
rawAssets: settings.rawAssets,
packedAssets: settings.packedAssets,
md5AssetsMap: settings.md5AssetsMap,
subpackages: settings.subpackages
});
cc.game.run(option, onStart);
};
if (window.jsb) {
var isRuntime = (typeof loadRuntime === 'function');
if (isRuntime) {
require('src/settings.620b6.js');
require('src/cocos2d-runtime.js');
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
require('src/physics.js');
}
require('jsb-adapter/engine/index.js');
}
else {
require('src/settings.620b6.js');
require('src/cocos2d-jsb.js');
if (CC_PHYSICS_BUILTIN || CC_PHYSICS_CANNON) {
require('src/physics.js');
}
require('jsb-adapter/jsb-engine.js');
}
cc.macro.CLEANUP_IMAGE_CACHE = true;
window.boot();
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"03@2x","texture":"2d3OzW079FCKYr9mv6eZJg","rect":[21,5,102,106],"offset":[7,7],"originalSize":[130,130],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"Screen_vibrating","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":6}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"a8a4fhJRiRB8YVcfMOtC1jT","node":{"__id__":2},"bgNode":{"__id__":4},"hitFeedback":{"__id__":6}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,452.93128617926146,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"background","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"d4yd5YF4VAMIltUULKILFa"},"_sizeMode":0},{"__type__":"cc.Widget","node":{"__id__":4},"_alignFlags":45,"_left":-10,"_right":-10,"_top":-10,"_bottom":-10,"_originalWidth":512,"_originalHeight":362},{"__type__":"cc.Button","node":{"__id__":4},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"a8a4fhJRiRB8YVcfMOtC1jT","handler":"hit"}]}],"_contentSize":{"__type__":"cc.Size","width":1354,"height":770},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"label","_parent":{"__id__":2},"_components":[{"__type__":"cc.Label","node":{"__id__":5},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_useOriginalSize":false,"_string":"1、点击屏幕任意位置触发震屏\n\n2、点击反馈每次播放完结会重置\n 到第一帧,等待下次触发","_N$string":"1、点击屏幕任意位置触发震屏\n\n2、点击反馈每次播放完结会重置\n 到第一帧,等待下次触发","_fontSize":34,"_lineHeight":50,"_N$verticalAlign":1,"_N$cacheMode":1}],"_opacity":204,"_contentSize":{"__type__":"cc.Size","width":494.91,"height":213},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"hit","_parent":{"__id__":2},"_active":false,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"965qORhrBB6JuvU7wcEqAx"}},{"__type__":"cc.Animation","node":{"__id__":6},"_defaultClip":{"__uuid__":"3c9cJxkSBMh5a+J++1hct3"},"_clips":[{"__uuid__":"3c9cJxkSBMh5a+J++1hct3"}]}],"_contentSize":{"__type__":"cc.Size","width":54,"height":56},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,0.8,0.8,1]}}],{"__type__":"cc.SpriteFrame","content":{"name":"04@2x","texture":"23fRIFrRNPR7R2kfI6h4C0","rect":[9,2,121,126],"offset":[4.5,0],"originalSize":[130,130],"capInsets":[0,0,0,0]}},{"__type__":"cc.AnimationClip","_name":"hit","_duration":1,"sample":4,"speed":10,"curveData":{"comps":{"cc.Sprite":{"spriteFrame":[{"frame":0,"value":{"__uuid__":"965qORhrBB6JuvU7wcEqAx"}},{"frame":0.25,"value":{"__uuid__":"7bWCgHn6NJMrJCsug0DAj7"}},{"frame":0.5,"value":{"__uuid__":"07mo+eeS1EDKzbTaNCjVXv"}},{"frame":0.75,"value":{"__uuid__":"24Feaq0RZBHLD7uFvYCq5x"}}]}}}},{"__type__":"cc.SpriteFrame","content":{"name":"02@2x","texture":"cdE/b+uphOArAHnQ4clf+x","rect":[29,17,82,86],"offset":[5,5],"originalSize":[130,130],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"01@2x","texture":"edj/OkDJFCmKKlm7iXG0c/","rect":[39,33,54,56],"offset":[1,4],"originalSize":[130,130],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"background","texture":"8crDF7fxBFDIXcvnybjbt1","rect":[0,0,512,362],"offset":[0,0],"originalSize":[512,362],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[[{"__type__":"cc.SceneAsset","_name":"SwitchScene__Strip","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"22c8cP1MQNB7Ka1h8g/gS0z","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"73/8z1J91OFb0DKXSx3ay8"},"spriteFrame2":{"__uuid__":"d3BPZOx2pMOIrS29ks3m5E"},"bgSprite":{"__id__":5},"material":{"__uuid__":"eec+jAX/BIarzf3shbBHVb"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"22c8cP1MQNB7Ka1h8g/gS0z","handler":"switchSceneByTransition","customEventData":"6"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"9ctePfLx5E36imVTgp0fjp","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"17vd3doaFNMKtmCXMpM0uN","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[[{"__type__":"cc.SceneAsset","_name":"SwitchScene__Wind","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"7e532YYQaNAB4q8myln4veS","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"5fyrrVfJVOb5m/yhPy2ZrV"},"spriteFrame2":{"__uuid__":"78dAnROgRMpIwpgO+5J7Q+"},"bgSprite":{"__id__":5},"material":{"__uuid__":"6d0lZqpe9I/6OiUhFjvh4e"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"7e532YYQaNAB4q8myln4veS","handler":"switchSceneByTransition","customEventData":"7"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"b29ONi3QJJ1qBrkGw8oCZy","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"ees0trscZIF7KUyA7FSOrR","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"c6Q5pYpkdBE7lWDDFJfmDL","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"SwitchScene__GlitchMemories","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"293d9TMqSxFybRwQO1/AgoY","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"df1Bm4LztFnZ4JkDINi40p"},"spriteFrame2":{"__uuid__":"38e8295UhD+YlX8Ir265Ci"},"bgSprite":{"__id__":5},"material":{"__uuid__":"c2exMXb5RNbJdgre4nmyrU"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"293d9TMqSxFybRwQO1/AgoY","handler":"switchSceneByTransition","customEventData":"1"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"f5a+aUcj1A+Y4GZQggKGCL","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"circle","texture":"77/k/1FCRAfLnMBqHlqsR/","rect":[0,0,120,120],"offset":[0,0],"originalSize":[120,120],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"mirror","texture":"69YP0J761Ldq5TXvrkx0Op","rect":[13,12,175,175],"offset":[0.5,0.5],"originalSize":[200,200],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"Magnifying_mirror","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":8}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"ac762bfY29KOIBc8dW/z/gl","node":{"__id__":2},"mirror":{"__id__":5},"mirrorCameraNode":{"__id__":8},"tempCameraSpriteNode":{"__id__":7}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"background","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"f0WmGBkqNAhLQ//RBQ1Hjf"},"_sizeMode":0},{"__type__":"cc.Widget","node":{"__id__":4},"_alignFlags":45,"_originalWidth":512,"_originalHeight":362}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"mirror","_parent":{"__id__":2},"_children":[{"__id__":6}],"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"51VqeIxxZEkJn0F33DxS4Y"}}],"_contentSize":{"__type__":"cc.Size","width":175,"height":175},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[15,19,0,0,0,0,1,1,1,1]},"_groupIndex":1,"groupIndex":1},{"__type__":"cc.Node","_name":"mask","_parent":{"__id__":5},"_children":[{"__id__":7}],"_components":[{"__type__":"cc.Mask","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_type":1,"_N$alphaThreshold":0}],"_contentSize":{"__type__":"cc.Size","width":130,"height":130},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[-14,12,0,0,0,0,1,1,1,1]},"_groupIndex":1,"groupIndex":1},{"__type__":"cc.Node","_name":"temp_sprite","_parent":{"__id__":6},"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"24ura/RRdFNrXLyofKJvWx"}}],"_contentSize":{"__type__":"cc.Size","width":120,"height":120},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"_groupIndex":1,"groupIndex":1},{"__type__":"cc.Node","_name":"mirror_camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":8},"_cullingMask":-3,"_depth":1,"_zoomRatio":1.5}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}}],{"__type__":"cc.SpriteFrame","content":{"name":"bg","texture":"0d7r8OW0xBiIpS95FaMu2e","rect":[0,0,968,582],"offset":[0,0],"originalSize":[968,582],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"joystick","texture":"407k4ITCNF5ZZbq+Rc8+WZ","rect":[0,0,190,191],"offset":[0,0],"originalSize":[190,191],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"singleColor","texture":"0bFXF1xQdNPZEoHLTUVFHx","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dot","texture":"eewidbVvpDYZ6V5NResLuw","rect":[0,0,130,130],"offset":[0,0],"originalSize":[130,130],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"star","texture":"f4tZqzIPVOEZ3j5hWZteTZ","rect":[0,4,60,66],"offset":[0,-1.5],"originalSize":[60,71],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"Joystick","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":6}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"70yO1mB+RC74H1o9Ps9Vlg"},"_sizeMode":0},{"__type__":"cc.Widget","node":{"__id__":4},"_alignFlags":45,"_originalWidth":2,"_originalHeight":2}],"_color":{"__type__":"cc.Color","r":27,"g":38,"b":46},"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"star","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a4Y3x7khBH6KyIcf0hNW6r"}}],"_contentSize":{"__type__":"cc.Size","width":60,"height":66},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"joystick","_parent":{"__id__":2},"_children":[{"__id__":7}],"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"33iAZsBRdAN6AEW/z081OQ"}},{"__type__":"ea7dbuck+9ApJnQTq/C4vpv","node":{"__id__":6},"controlDot":{"__id__":7},"joystick":{"__id__":6},"movableStar":{"__id__":5}},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":36,"_right":121.916,"_bottom":46.81999999999999}],"_contentSize":{"__type__":"cc.Size","width":190,"height":191},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[488.08400000000006,-270.88,0,0,0,0,1,0.6,0.6,1]}},{"__type__":"cc.Node","_name":"control_dot","_parent":{"__id__":6},"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"97yP+0SC9O4r2J7QJw/EJs"},"_sizeMode":0}],"_contentSize":{"__type__":"cc.Size","width":130,"height":130},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}}]]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[[{"__type__":"cc.SceneAsset","_name":"SwitchScene__SquaresWire","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"9a422OgmqtKVbOR0Q+NC+Bk","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"e4VUcLpxNOorycNkkEdKZQ"},"spriteFrame2":{"__uuid__":"a2kY6q5qZMWp/n7Mjev+/5"},"bgSprite":{"__id__":5},"material":{"__uuid__":"a8aawT/+1DNLXfElEnPysH"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"9a422OgmqtKVbOR0Q+NC+Bk","handler":"switchSceneByTransition","customEventData":"5"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"d1xoyMZvRKfY/qMbwbVm72","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"23U1kdn4FKKpmJ6qe6GKA8","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[[{"__type__":"cc.SceneAsset","_name":"Bullet_Tracking","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":7},{"__id__":8}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"82433YSgYFI4Kmfyazc1Wwg","node":{"__id__":2},"launch_btn":{"__id__":8},"bullet":{"__id__":5},"target":{"__id__":7}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,452.93128617926146,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"eecUK8QkdH34qn/AmYY6Cx"},"_sizeMode":0},{"__type__":"cc.Widget","node":{"__id__":4},"_alignFlags":45,"_originalWidth":2,"_originalHeight":2}],"_color":{"__type__":"cc.Color","r":27,"g":38,"b":46},"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"bullet","_parent":{"__id__":2},"_children":[{"__id__":6}],"_active":false,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"1fYlL2IJFLs6Re4gcyZAi4"}}],"_contentSize":{"__type__":"cc.Size","width":47,"height":106},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":1},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[598.804,-270.25,0,0,0,0,1,0.5,0.5,1]}},{"__type__":"cc.Node","_name":"boom","_parent":{"__id__":5},"_active":false,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"30wI2ZYKRATYOGIUtazu4P"}}],"_contentSize":{"__type__":"cc.Size","width":57,"height":50},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,2,2,2]}},{"__type__":"cc.Node","_name":"target","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"33GJz9BlNAQq+BkwFAYy4K"}}],"_contentSize":{"__type__":"cc.Size","width":61,"height":55},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"launch_btn","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":8},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"delLhKdTRK/ogAVr6qArxS"}},{"__type__":"cc.Widget","node":{"__id__":8},"_alignFlags":36,"_right":49,"_bottom":53.5},{"__type__":"cc.Button","node":{"__id__":8},"_normalMaterial":{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"82433YSgYFI4Kmfyazc1Wwg","handler":"fire"}],"_N$transition":3,"transition":3}],"_contentSize":{"__type__":"cc.Size","width":124,"height":106},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[587,-295,0,0,0,0,1,0.5,0.5,1]}}],{"__type__":"cc.SpriteFrame","content":{"name":"bullet","texture":"caBjcrIlhHE4ZaWNQ6Do8y","rect":[1,0,47,106],"offset":[0.5,0],"originalSize":[48,106],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"boom","texture":"3ff83fNzVKkakfNKFQbYE5","rect":[0,0,57,50],"offset":[0,0],"originalSize":[57,50],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"target","texture":"e3Rxd+oWtAgacmZoqQiBGV","rect":[0,0,61,55],"offset":[0,0],"originalSize":[61,55],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"bullet_btn","texture":"3fDPpKke5Gj4vifisSek2b","rect":[0,0,124,106],"offset":[0,0],"originalSize":[124,106],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"single_color","texture":"11kpCpuGBAH7r2xFCS7v+d","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"cfI8ZzA9JCe7QzSnsPTEj9","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"SwitchScene__DoomScreen","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"22731LgD/dJ8YARF90bY3L+","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"bf+n8MJCFKFY3R62FlBhyW"},"spriteFrame2":{"__uuid__":"21Zcf0dDJHQYg4zVyk0aM+"},"bgSprite":{"__id__":5},"material":{"__uuid__":"942NmRnoRNiIn3M9FPG8m/"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"22731LgD/dJ8YARF90bY3L+","handler":"switchSceneByTransition","customEventData":"0"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"56lbEEcVxGl4dA98uUuZAa","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}}]

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[[{"__type__":"cc.SceneAsset","_name":"SwitchScene__PolkaDotsCurtain","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"0445dlJQ9tLR7xapzM+CJSX","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"5a1pS2/rBGx72//VXjezOW"},"spriteFrame2":{"__uuid__":"90Mpp/K5pHgZXd92fYZdDo"},"bgSprite":{"__id__":5},"material":{"__uuid__":"98Wi2Q/QlNB52UpQ1a8RbZ"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"0445dlJQ9tLR7xapzM+CJSX","handler":"switchSceneByTransition","customEventData":"4"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"ceImlW6lFLWZBbVW1y90zU","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"bafWPg8I5JU4YmBHdX9WVx","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[{"__type__":"cc.EffectAsset","_name":"builtin-2d-gray-sprite","techniques":[{"passes":[{"blendState":{"targets":[{"blend":true}]},"rasterizerState":{"cullMode":0},"properties":{"texture":{"value":"white","type":29}},"program":"builtin-2d-gray-sprite|vs|fs"}]}],"shaders":[{"hash":528178564,"glsl3":{"vert":"\nprecision highp float;\nuniform CCGlobal {\n highp vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n mediump vec4 cc_nativeSize;\n highp mat4 cc_matView;\n mediump mat4 cc_matViewInv;\n mediump mat4 cc_matProj;\n mediump mat4 cc_matProjInv;\n mediump mat4 cc_matViewProj;\n mediump mat4 cc_matViewProjInv;\n mediump vec4 cc_cameraPos;\n};\nin vec3 a_position;\nin mediump vec2 a_uv0;\nout mediump vec2 v_uv0;\nin vec4 a_color;\nout vec4 v_color;\nvoid main () {\n gl_Position = cc_matViewProj * vec4(a_position, 1);\n v_uv0 = a_uv0;\n v_color = a_color;\n}","frag":"\nprecision highp float;\nuniform sampler2D texture;\nin mediump vec2 v_uv0;\nin vec4 v_color;\nvoid main () {\n vec4 color = v_color * texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_TEXTURE\n color.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n float gray = 0.2126*color.r + 0.7152*color.g + 0.0722*color.b;\n gl_FragColor = vec4(gray, gray, gray, color.a);\n}"},"glsl1":{"vert":"\nprecision highp float;\nuniform mediump mat4 cc_matViewProj;\nattribute vec3 a_position;\nattribute mediump vec2 a_uv0;\nvarying mediump vec2 v_uv0;\nattribute vec4 a_color;\nvarying vec4 v_color;\nvoid main () {\n gl_Position = cc_matViewProj * vec4(a_position, 1);\n v_uv0 = a_uv0;\n v_color = a_color;\n}","frag":"\nprecision highp float;\nuniform sampler2D texture;\nvarying mediump vec2 v_uv0;\nvarying vec4 v_color;\nvoid main () {\n vec4 color = v_color * texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_TEXTURE\n color.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n float gray = 0.2126*color.r + 0.7152*color.g + 0.0722*color.b;\n gl_FragColor = vec4(gray, gray, gray, color.a);\n}"},"builtins":{"globals":{"blocks":[{"name":"CCGlobal","defines":[]}],"samplers":[]},"locals":{"blocks":[],"samplers":[]}},"defines":[{"name":"CC_USE_ALPHA_ATLAS_TEXTURE","type":"boolean","defines":[]}],"blocks":[],"samplers":[{"name":"texture","type":29,"count":1,"defines":[],"binding":30}],"record":null,"name":"builtin-2d-gray-sprite|vs|fs"}]},{"__type__":"cc.Material","_name":"builtin-2d-gray-sprite","_effectAsset":{"__uuid__":"14TDKXr2NJ6LjvHPops74o"},"_techniqueData":{}}]

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"SwitchScene__Perlin","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"f73a82LpAxBmZwDm8dJO3Q+","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"eb7uvp9qhD5og7FLO+1XqZ"},"spriteFrame2":{"__uuid__":"e18qwxbrBLFIyOqrb1hGik"},"bgSprite":{"__id__":5},"material":{"__uuid__":"db8GvNgCRPCKU1CPc4Pt8A"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"f73a82LpAxBmZwDm8dJO3Q+","handler":"switchSceneByTransition","customEventData":"3"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"0cbB/CsO5MbqdjFlWh4XeO","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"84OzAlxHVANp1HXueMSyq1","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"type":"cc.Texture2D","data":"0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,0|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,0|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,0|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,0|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,0|1,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,0|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,0|0,9729,9729,33071,33071,0,0,0|0,9729,9729,33071,33071,0,0,1|1,9729,9729,33071,33071,0,0,0|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|2,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1|0,9729,9729,33071,33071,0,0,1"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[[{"__type__":"cc.SceneAsset","_name":"SwitchScene__Morph","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":6},{"__id__":7},{"__id__":4}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_objFlags":512,"_parent":{"__id__":1},"_children":[{"__id__":3}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"75ff9DV6TxDfp7lelS5SRve","node":{"__id__":2},"separator":{"__id__":4},"spriteFrame1":{"__uuid__":"cfQL3FMaJAaYfQMlIps7o5"},"spriteFrame2":{"__uuid__":"d0wyBDEHxDGroswam6Yj5R"},"bgSprite":{"__id__":5},"material":{"__uuid__":"ac2SJyRIFJxoHvWuKOaZ7P"}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":960,"height":640},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,443.4050067376326,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"Separator","_parent":{"__id__":1},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_sizeMode":0}],"_color":{"__type__":"cc.Color","r":255,"g":171,"b":23},"_contentSize":{"__type__":"cc.Size","width":10,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[333,0,0,0,0,0,1,1,1,1]},"_id":"00zwOFnw9A9Y2jJcAfpxGt"},{"__type__":"cc.Sprite","node":{"__id__":6},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Node","_name":"Bg","_parent":{"__id__":1},"_components":[{"__id__":5},{"__type__":"cc.Widget","node":{"__id__":6},"_alignFlags":45,"_originalWidth":1024,"_originalHeight":445}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,-1,1]},"_id":"34YKVYdF5MoYlFN+Zfb6wk"},{"__type__":"cc.Node","_name":"Btn","_parent":{"__id__":1},"_components":[{"__type__":"cc.Button","node":{"__id__":7},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":2},"_componentId":"75ff9DV6TxDfp7lelS5SRve","handler":"switchSceneByTransition","customEventData":"2"}],"_N$target":{"__id__":7}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"86cUKFE9tE9oaqEYOODUgx"}},{"__type__":"cc.Widget","node":{"__id__":7},"_alignFlags":17,"_top":180,"_verticalCenter":157.942}],"_contentSize":{"__type__":"cc.Size","width":1477,"height":118},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,528.7,0,0,0,0,1,0.7,0.7,1]},"_id":"bcVNNAEfFEJL7tftaCUB7n"}],{"__type__":"cc.SpriteFrame","content":{"name":"btn","texture":"adRVgPBNVI94O5TxhSCZwc","rect":[0,0,1477,118],"offset":[0,0],"originalSize":[1477,118],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"76pP+tvUpONrUdeROQsTrG","rect":[0,0,768,408],"offset":[0,0],"originalSize":[768,408],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"6ceyPFLh5OkaskndWh+lwU","rect":[0,0,768,407],"offset":[0,0],"originalSize":[768,407],"capInsets":[0,0,0,0]}}]

View File

@ -0,0 +1 @@
[{"__type__":"cc.SpriteFrame","content":{"name":"sheep","texture":"eerOkqcFRNhoHSkomMOWrS","rect":[27,24,167,112],"offset":[-3.5,-0.5],"originalSize":[228,159],"capInsets":[0,0,0,0]}},[{"__type__":"cc.SceneAsset","_name":"Moving_ghost","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2}],"_anchorPoint":{"__type__":"cc.Vec2"},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Canvas","_parent":{"__id__":1},"_children":[{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":7},{"__id__":9},{"__id__":11},{"__id__":13},{"__id__":15}],"_components":[{"__type__":"cc.Canvas","node":{"__id__":2},"_designResolution":{"__type__":"cc.Size","width":1334,"height":750}},{"__type__":"cc.Widget","node":{"__id__":2},"_alignFlags":45},{"__type__":"0dc97ZIzztH7IJMDQwHUeiI","node":{"__id__":2},"ghostCanvasList":[{"__id__":6},{"__id__":8},{"__id__":10},{"__id__":12},{"__id__":14}],"role":{"__id__":15},"roleCamera":{"__id__":17}}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[667,375,0,0,0,0,1,1,1,1]},"_id":"a5esZu+45LA5mBpvttspPD"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":2},"_components":[{"__type__":"cc.Camera","node":{"__id__":3},"_clearFlags":7,"_depth":-1}],"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,452.93128617926146,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":2},"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"deDecreM9G8qpJHYyRyrxp"},"_sizeMode":0},{"__type__":"cc.Widget","node":{"__id__":4},"_alignFlags":45,"_originalWidth":2,"_originalHeight":2}],"_color":{"__type__":"cc.Color","r":27,"g":38,"b":46},"_contentSize":{"__type__":"cc.Size","width":1334,"height":750},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Node","_name":"ghost_canvas_1","_parent":{"__id__":2},"_components":[{"__id__":6}],"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Sprite","node":{"__id__":5},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}]},{"__type__":"cc.Node","_name":"ghost_canvas_2","_parent":{"__id__":2},"_components":[{"__id__":8}],"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Sprite","node":{"__id__":7},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}]},{"__type__":"cc.Node","_name":"ghost_canvas_3","_parent":{"__id__":2},"_components":[{"__id__":10}],"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Sprite","node":{"__id__":9},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}]},{"__type__":"cc.Node","_name":"ghost_canvas_4","_parent":{"__id__":2},"_components":[{"__id__":12}],"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Sprite","node":{"__id__":11},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}]},{"__type__":"cc.Node","_name":"ghost_canvas_5","_parent":{"__id__":2},"_components":[{"__id__":14}],"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,0,0,0,0,1,1,1,1]}},{"__type__":"cc.Sprite","node":{"__id__":13},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}]},{"__type__":"cc.Node","_name":"role","_parent":{"__id__":2},"_children":[{"__id__":16}],"_components":[{"__type__":"cc.Sprite","node":{"__id__":15},"_materials":[{"__uuid__":"ecpdLyjvZBwrvm+cedCcQy"}],"_spriteFrame":{"__uuid__":"67EJyxtC9HMazhmLDiIHYK"}}],"_contentSize":{"__type__":"cc.Size","width":167,"height":112},"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[-200.022,30.604,0,0,0,0,1,1,1,1]},"_groupIndex":2,"groupIndex":2},{"__type__":"cc.Node","_name":"camera","_parent":{"__id__":15},"_components":[{"__id__":17}],"_trs":{"__type__":"TypedArray","ctor":"Float64Array","array":[0,0,452.93128617926146,0,0,0,1,1,-1,1]}},{"__type__":"cc.Camera","node":{"__id__":16},"_cullingMask":-4,"_nearClip":0.1}],{"__type__":"cc.SpriteFrame","content":{"name":"single_color","texture":"adZCI68GdN8J1q7uEICNIg","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}]

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[{"__type__":"cc.EffectAsset","_name":"builtin-clear-stencil","techniques":[{"passes":[{"blendState":{"targets":[{"blend":true}]},"rasterizerState":{"cullMode":0},"program":"builtin-clear-stencil|vs|fs"}]}],"shaders":[{"hash":2075641479,"glsl3":{"vert":"\nprecision highp float;\nin vec3 a_position;\nvoid main () {\n gl_Position = vec4(a_position, 1);\n}","frag":"\nprecision highp float;\nvoid main () {\n gl_FragColor = vec4(1.0);\n}"},"glsl1":{"vert":"\nprecision highp float;\nattribute vec3 a_position;\nvoid main () {\n gl_Position = vec4(a_position, 1);\n}","frag":"\nprecision highp float;\nvoid main () {\n gl_FragColor = vec4(1.0);\n}"},"builtins":{"globals":{"blocks":[],"samplers":[]},"locals":{"blocks":[],"samplers":[]}},"defines":[],"blocks":[],"samplers":[],"record":null,"name":"builtin-clear-stencil|vs|fs"}]},{"__type__":"cc.Material","_name":"builtin-clear-stencil","_effectAsset":{"__uuid__":"c0BAyVxX9JzZy8EjFrc9DU"},"_techniqueData":{}}]

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
[{"__type__":"cc.EffectAsset","_name":"builtin-2d-spine","techniques":[{"passes":[{"blendState":{"targets":[{"blend":true}]},"rasterizerState":{"cullMode":0},"properties":{"texture":{"value":"white","type":29},"alphaThreshold":{"value":[0.5],"type":13}},"program":"builtin-2d-spine|vs|fs"}]}],"shaders":[{"hash":744594081,"glsl3":{"vert":"\nprecision highp float;\nuniform CCGlobal {\n highp vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n mediump vec4 cc_nativeSize;\n highp mat4 cc_matView;\n mediump mat4 cc_matViewInv;\n mediump mat4 cc_matProj;\n mediump mat4 cc_matProjInv;\n mediump mat4 cc_matViewProj;\n mediump mat4 cc_matViewProjInv;\n mediump vec4 cc_cameraPos;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\n#if USE_TINT\n in vec4 a_color0;\n#endif\nin vec2 a_uv0;\nout vec2 v_uv0;\nout vec4 v_light;\n#if USE_TINT\n out vec4 v_dark;\n#endif\nvoid main () {\n mat4 mvp;\n #if CC_USE_MODEL\n mvp = cc_matViewProj * cc_matWorld;\n #else\n mvp = cc_matViewProj;\n #endif\n v_uv0 = a_uv0;\n v_light = a_color;\n #if USE_TINT\n v_dark = a_color0;\n #endif\n gl_Position = mvp * vec4(a_position, 1);\n}","frag":"\nprecision highp float;\nuniform sampler2D texture;\nin vec2 v_uv0;\nin vec4 v_light;\n#if USE_TINT\n in vec4 v_dark;\n#endif\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nvoid main () {\n vec4 texColor = texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_TEXTURE\n texColor.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n vec4 finalColor;\n #if USE_TINT\n finalColor.a = v_light.a * texColor.a;\n finalColor.rgb = ((texColor.a - 1.0) * v_dark.a + 1.0 - texColor.rgb) * v_dark.rgb + texColor.rgb * v_light.rgb;\n #else\n finalColor = texColor * v_light;\n #endif\n ALPHA_TEST(finalColor);\n gl_FragColor = finalColor;\n}"},"glsl1":{"vert":"\nprecision highp float;\nuniform mediump mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\n#if USE_TINT\n attribute vec4 a_color0;\n#endif\nattribute vec2 a_uv0;\nvarying vec2 v_uv0;\nvarying vec4 v_light;\n#if USE_TINT\n varying vec4 v_dark;\n#endif\nvoid main () {\n mat4 mvp;\n #if CC_USE_MODEL\n mvp = cc_matViewProj * cc_matWorld;\n #else\n mvp = cc_matViewProj;\n #endif\n v_uv0 = a_uv0;\n v_light = a_color;\n #if USE_TINT\n v_dark = a_color0;\n #endif\n gl_Position = mvp * vec4(a_position, 1);\n}","frag":"\nprecision highp float;\nuniform sampler2D texture;\nvarying vec2 v_uv0;\nvarying vec4 v_light;\n#if USE_TINT\n varying vec4 v_dark;\n#endif\n#if USE_ALPHA_TEST\n uniform float alphaThreshold;\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nvoid main () {\n vec4 texColor = texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_TEXTURE\n texColor.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n vec4 finalColor;\n #if USE_TINT\n finalColor.a = v_light.a * texColor.a;\n finalColor.rgb = ((texColor.a - 1.0) * v_dark.a + 1.0 - texColor.rgb) * v_dark.rgb + texColor.rgb * v_light.rgb;\n #else\n finalColor = texColor * v_light;\n #endif\n ALPHA_TEST(finalColor);\n gl_FragColor = finalColor;\n}"},"builtins":{"globals":{"blocks":[{"name":"CCGlobal","defines":[]}],"samplers":[]},"locals":{"blocks":[{"name":"CCLocal","defines":[]}],"samplers":[]}},"defines":[{"name":"USE_TINT","type":"boolean","defines":[]},{"name":"CC_USE_MODEL","type":"boolean","defines":[]},{"name":"USE_ALPHA_TEST","type":"boolean","defines":[]},{"name":"CC_USE_ALPHA_ATLAS_TEXTURE","type":"boolean","defines":[]}],"blocks":[{"name":"ALPHA_TEST","members":[{"name":"alphaThreshold","type":13,"count":1}],"defines":["USE_ALPHA_TEST"],"binding":0}],"samplers":[{"name":"texture","type":29,"count":1,"defines":[],"binding":30}],"record":null,"name":"builtin-2d-spine|vs|fs"}]},{"__type__":"cc.Material","_name":"builtin-2d-spine","_effectAsset":{"__uuid__":"0ek66qC1NOQLjgYmi04HvX"},"_techniqueData":{}}]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"__type__":"cc.Material","_name":"builtin-2d-base","_effectAsset":{"__uuid__":"28dPjdQWxEQIG3VVl1Qm6T"},"_techniqueData":{}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 872 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

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