forked from qerrant/BezierBlenderToUE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.txt
24 lines (18 loc) · 1.08 KB
/
error.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Python: Traceback (most recent call last):
File "/Users/elliotpage/Library/Application Support/Blender/3.4/scripts/addons/ExportBezierToGodot.py", line 57, in execute
saveFile.write(")\n}\npoint_count = " + count)
TypeError: can only concatenate str (not "int") to str
Python: Traceback (most recent call last):
File "/Users/elliotpage/Library/Application Support/Blender/3.4/scripts/addons/ExportBezierToGodot.py", line 57, in execute
saveFile.write(")\n}\npoint_count = " + str(count))
TypeError: 'str' object is not callable
To write a non-string value, convert it to a string using str() **before** passing it to write().
No dice?
Python: Traceback (most recent call last):
File "/Users/elliotpage/Library/Application Support/Blender/3.4/scripts/addons/ExportBezierToGodot.py", line 57, in execute
count = str(count) # convert to string for writing, no more use needed as an integer
TypeError: 'str' object is not callable
-------
Oops I initially imported the wrong file into Godot.
Works!!!
It looks a bit chaotic but works! May need to simplify the curve before export.