20 lines
516 B
JavaScript
20 lines
516 B
JavaScript
|
|
|
|
const platformNames = {
|
|
[System.PLATFORM_LINUX]: 'Linux',
|
|
[System.PLATFORM_KNULLI]: 'Knulli',
|
|
[System.PLATFORM_PSP]: 'PSP',
|
|
[System.PLATFORM_GAMECUBE]: 'GameCube',
|
|
[System.PLATFORM_WII]: 'Wii',
|
|
};
|
|
|
|
Console.print('Platform: ' + (platformNames[System.platform] || 'Unknown'));
|
|
|
|
async function testRequireAsync() {
|
|
Console.print('Loading testscene.js...');
|
|
const scene = await requireAsync('testscene.js');
|
|
Console.print('Loaded!');
|
|
Console.print(scene.test());
|
|
}
|
|
|
|
testRequireAsync(); |