FUSION 360 API: SKETCH NOT CREATED - NOT A PYTHON PROGRAMMER, TRYING TO USE CHATGPT TO HELP ME WRITE AN ADD-IN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Fusion 360 API: Sketch Not Created — SketchFittedSplines.add() Fails Silently
System: Windows 11
Fusion Version: [2602.1.25 x86_64]
Running as: Add-In
Environment: FusionSolidEnvironment (Design workspace)
Problem Summary
I'm developing a Fusion 360 add-in that creates a sketch with a spline using SketchFittedSplines.add(). Even with a clean, minimal example and fresh install, no sketch is created, and no error is thrown, despite using valid Fusion API calls inside a properly configured add-in.
What I’ve Already Tried
Confirmed active workspace is FusionSolidEnvironment
Verified adsk.fusion.Design is active product
Reinstalled Fusion 360 completely
Deleted %AppData% Fusion folders
Moved all add-ins to a clean state
Used known-good minimal test add-in (see below)
Ran as a proper Add-In (not Script)
Verified sketch and ObjectCollection are valid
Confirmed user input dialog works
Tried SketchPoints.add(...) and .sketchCurves.sketchFittedSplines.add(...) — neither has any visible effect
Ran Fusion in Safe Graphics Mode
Still, no sketch is created
Minimal Reproducible Add-In (SplineTest.py)
Why is SketchFittedSplines.add() (or even just .sketchPoints.add(...)) failing silently, even when the API is clearly being called and all objects are valid?
Is there a system-level permission or graphics setting that could silently suppress API execution?
Is there a known issue with sketch creation in recent Fusion builds?
What else can I check to unblock geometry creation from add-ins?
Any help is appreciated!
Thanks in advance for your time.