thomasa88 / ParametricText

Fusion 360™ add-in for creating Text Parameters in sketches.
MIT License
75 stars 5 forks source link

Trying to change 512 texts uses to much resources even on an Apple M2 Mac #62

Closed AWSW-de closed 6 months ago

AWSW-de commented 7 months ago

Hi Thomas,

first of all MANY THANKS for this great plugin! You can't believe how much time it saved me on my last WordClock 16x8 project in meanwhile 11 languages and 3 fonts. =)

Describe the bug

Screenshots Bildschirmfoto 2024-02-16 um 09 30 06

Hope you have some hints for me how to solve this.

Thanks in advance and kind regards =)

Software

thomasa88 commented 6 months ago

Hi, my intention with ParametricText is for it to fill in a small number of texts and I have not looked at how the performance scales. With that many texts I think you might be better of just creating an API script of your own, accessing each SketchText: https://help.autodesk.com/view/fusion360/ENU/?guid=GUID-265d4bb3-2e68-4edf-bd57-bb4d4204beb0

app=adsk.core.Application.get()
app.activeProduct.rootComponent.sketches[0].sketchTexts[0]

Of course, you will have to solve the problem of assigning texts in the correct order..

AWSW-de commented 6 months ago

Hi, thanks for your answer which I expected a little bit in advance. The link you provided seems to be dead, so I can’t follow it.
Thanks a lot and have a nice day. Kind regards. :)

thomasa88 commented 6 months ago

The links break when they do updates. :S

Try searching for "SketchText.angle" on that page and then you can step back up to SketchText, if you feel like digging into some Python. :)

Closing this report.