mirror of
https://github.com/godotengine/collada-exporter.git
synced 2026-01-01 01:48:22 +03:00
Merge pull request #134 from Klowner/cyclic-splines
This commit is contained in:
@@ -1370,7 +1370,8 @@ class DaeExporter:
|
||||
self.writel(
|
||||
S_GEOM, 1, "<geometry id=\"{}\" name=\"{}\">".format(
|
||||
splineid, curve.name))
|
||||
self.writel(S_GEOM, 2, "<spline closed=\"0\">")
|
||||
self.writel(S_GEOM, 2, "<spline closed=\"{}\">".format(
|
||||
"true" if curve.splines and curve.splines[0].use_cyclic_u else "false"))
|
||||
|
||||
points = []
|
||||
interps = []
|
||||
|
||||
Reference in New Issue
Block a user