mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
25 lines
518 B
TypeScript
25 lines
518 B
TypeScript
import { hello } from 'data/sandpack/hello-world';
|
|
import {
|
|
main,
|
|
main2,
|
|
styles,
|
|
} from 'data/sandpack/how-to-load-a-background-with-threejs';
|
|
|
|
import skybox_example from 'public/images/p/how-to-load-a-background-with-threejs/Skybox_example.png';
|
|
|
|
const data = {
|
|
sandpack: {
|
|
'hello-world': hello,
|
|
'load-background-main': main,
|
|
'load-background-main2': main2,
|
|
'load-background-styles': styles,
|
|
},
|
|
images: {
|
|
'load-background': {
|
|
skybox_example,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default data;
|