Reorder model renaming

pull/10/head
Carson Katri 2022-12-02 08:32:29 -05:00
rodzic 86023a2bb5
commit ccac8b4fab
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -11,6 +11,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Set the `geometry_script` module to the current module in case the folder is named differently.
import sys
sys.modules['geometry_script'] = sys.modules[__name__]
import bpy
import os
import webbrowser
@ -19,10 +23,6 @@ from .api.tree import *
from .preferences import GeometryScriptPreferences
from .absolute_path import absolute_path
# Set the `geometry_script` module to the current module in case the folder is named differently.
import sys
sys.modules['geometry_script'] = sys.modules[__name__]
bl_info = {
"name" : "Geometry Script",
"author" : "Carson Katri",