Changeset View
Changeset View
Standalone View
Standalone View
io_scene_fbx/export_fbx_bin.py
| Context not available. | |||||
| for fc in act.fcurves: | for fc in act.fcurves: | ||||
| data_path = fc.data_path | data_path = fc.data_path | ||||
| if fc.array_index: | if fc.array_index: | ||||
| data_path = data_path + "[%d]" % fc.array_index | data_path += "[%d]" % fc.array_index | ||||
| try: | try: | ||||
| path_resolve(data_path) | path_resolve(data_path) | ||||
| except ValueError: | except ValueError: | ||||
| Context not available. | |||||