Skip to content

Commit db954a4

Browse files
Final changes to ConfigCommand.py
1 parent 0e2edbd commit db954a4

File tree

8 files changed

+111
-242
lines changed

8 files changed

+111
-242
lines changed

exporter/SynthesisFusionAddin/src/Parser/ExporterOptions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ExporterOptions:
3232
# Python's `os` module can return `None` when attempting to find the home directory if the
3333
# user's computer has conflicting configs of some sort. This has happened and should be accounted
3434
# for accordingly.
35-
fileLocation: str | None = field(
35+
fileLocation: str | os.PathLike[str] | None = field(
3636
default=(os.getenv("HOME") if platform.system() == "Windows" else os.path.expanduser("~"))
3737
)
3838
name: str | None = field(default=None)
@@ -52,7 +52,7 @@ class ExporterOptions:
5252
compressOutput: bool = field(default=True)
5353
exportAsPart: bool = field(default=False)
5454

55-
exportLocation: ExportLocation = field(default=ExportLocation.UPLOAD)
55+
exportLocation: ExportLocation = field(default=ExportLocation.DOWNLOAD)
5656

5757
hierarchy: ModelHierarchy = field(default=ModelHierarchy.FusionAssembly)
5858
visualQuality: TriangleMeshQualityOptions = field(default=TriangleMeshQualityOptions.LowQualityTriangleMesh)

exporter/SynthesisFusionAddin/src/Resources/HTML/info.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<script>
5-
window.location.replace("https://synthesis.autodesk.com/tutorials.html")
5+
window.location.replace("https://synthesis.autodesk.com/codelab/FusionExporterCodelab/index.html#0")
66
</script>
77
<style>
88
.redirecting {
@@ -18,4 +18,4 @@
1818
<h1>Redirecting...</h1>
1919
</div>
2020
</body>
21-
</html>
21+
</html>

exporter/SynthesisFusionAddin/src/Types.py

+2
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ class ModelHierarchy(Enum):
8585
KG: TypeAlias = float
8686
LBS: TypeAlias = float
8787
PRIMITIVES = (bool, str, int, float, type(None))
88+
89+
# All currently supported Fusion joints
8890
SELECTABLE_JOINT_TYPES = (adsk.fusion.JointTypes.RevoluteJointType, adsk.fusion.JointTypes.SliderJointType)
8991

9092

exporter/SynthesisFusionAddin/src/UI/Camera.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
@logFailure
12-
def captureThumbnail(size: int = 250) -> str:
12+
def captureThumbnail(size: int = 250) -> str | os.PathLike[str]:
1313
"""
1414
## Captures Thumbnail and saves it to a temporary path - needs to be cleared after or on startup
1515
- Size: int (Default: 200) : (width & height)

0 commit comments

Comments
 (0)