Files
cocos/extensions/game-controller-inspector/dist/scene-script.js
刘宇飞 d393302388 Complete Cocos Creator port with level bundles, themes, and tooling.
Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-16 15:30:58 +08:00

11 lines
297 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'use strict';
/** 编辑器 ▶ 预览:注入 data/levels-database.json不打包进 resources */
exports.methods = {
apply(json) {
if (typeof window !== 'undefined' && json && typeof json === 'object') {
window.__tfrhLevelsDatabaseJson = json;
}
},
};