15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
|
|
|
||
|
|
function base_ext_init() {
|
||
|
|
random_node_set_seed(math_floor(time_time() * 4294967295));
|
||
|
|
}
|
||
|
|
|
||
|
|
function base_ext_render() {
|
||
|
|
if (context_raw.frame == 2) {
|
||
|
|
app_notify_on_next_frame(function () {
|
||
|
|
app_notify_on_next_frame(function () {
|
||
|
|
tab_meshes_set_default_mesh(".Sphere");
|
||
|
|
});
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|