mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:23:12 +02:00
5 lines
117 B
Python
5 lines
117 B
Python
import bpy
|
|
import os
|
|
script_path = '' # path to script
|
|
exec(compile(open(script_path).read(), script_path, 'exec'))
|