mirror of
https://github.com/CopterExpress/clever-show.git
synced 2026-06-05 03:29:33 +00:00
29 lines
629 B
Python
29 lines
629 B
Python
import os
|
|
import sys
|
|
|
|
import json
|
|
|
|
import bpy
|
|
from bpy_extras.io_utils import ExportHelper
|
|
from bpy.types import Operator
|
|
from bpy.props import StringProperty, BoolProperty, FloatProperty, IntProperty
|
|
|
|
|
|
class ExportSwarmAnimation(Operator, ExportHelper):
|
|
bl_idname = "clever_show.export"
|
|
bl_label = "clever-show animation (.csv)"
|
|
filename_ext = ''
|
|
use_filter_folder = True
|
|
|
|
filepath: StringProperty(
|
|
name="File Path",
|
|
description="File path used for exporting CSV files",
|
|
maxlen=1024,
|
|
subtype='DIR_PATH',
|
|
default=""
|
|
)
|
|
|
|
def execute(self, context):
|
|
pass
|
|
|