Autodesk Inc. is an American multinational corporation that focuses on 3D design software for use in the architecture, engineering, construction, manufacturing, media and entertainment industries.
Questions tagged [autodesk]
981 questions
4
votes
1 answer
Creating a Point or Vertex in FBX SDK
I'm trying to create a single vertex point at a given coordinate of a parent node.
# create a manager, scene and node
manager = fbx.FbxManager.Create()
scene = fbx.FbxScene.Create(manager, "")
node = fbx.FbxNode.Create(manager, "")
# create a…

Pandemonium
- 7,724
- 3
- 32
- 51
4
votes
1 answer
FBX SDK - Get the FbxNode from an ENodeId of a Character
Is it possible to get the associated FbxNode from the enum ENodeId ?
for example if i want to get the FbxNode from the Character::eLeftHand
I tried to use Character::GetCharacterLink(ENodeId, FbxCharacterLink)
then extracting the FbxNode from…

Elteroooo
- 2,913
- 3
- 33
- 40
4
votes
2 answers
Load custom .net dll inside accoreconsole.exe
I am trying to load my custom .net dll inside accoreconsole.exe (AutoCAD 2016) using netload command but it fails to load the dll.
Below is the output from accoreconsole.exe :
Redirect stdout (file:…

amit
- 363
- 2
- 10
- 24
3
votes
0 answers
Is there an in alternative to using ParameterSplit in revit api c# 2021?
I'm trying to create a method that splits rebar in Revit. I noticed that ParameterSplit is used in the 2015 API docs, Does anyone know if there is an alternative?
The code snip is as below with geocurve being type Curve
Curve[] curves =…

Tebo
- 41
- 3
3
votes
1 answer
Ansible win_scheduled_task how to start a task immediately
Help with advice please!
There is a program located in the path:
C:\Program Files(x86)\Common Files\Autodesk Shared\AdskLicensing\Current\helper\AdskLicensingInstHelper.exe
And it must be run with the parameters:
register -pk 829L1 -pv 2020.0.0.F…

Michail S
- 81
- 1
- 5
3
votes
1 answer
Maya Python: rename duplicated joint children
So as I continue building my auto rigging script I've run into the second out of three problems I anticipated would be difficult to solve. This is probably a really simple answer: but the script itself is very easy to use, first hit generate proxy…

Dasteel
- 101
- 18
3
votes
1 answer
How to Make Autodesk Viewer Orthographic by Default
I am trying to make the autodesk viewer display files in orthographic mode by default. So far the best solution i've come up with is the following:
forgeViewer.addEventListener(
Autodesk.Viewing.GEOMETRY_LOADED_EVENT,
function setOrtho() {
…

Connor Whalen
- 130
- 4
3
votes
1 answer
How to get Autodesk Viewer LayerManager to RestoreState properly
I've encountered a bug in the Autodesk Viewer LayerManager extension that breaks the restoreState functionality. I am saving the state of a multilayer DWG file using getState and re-applying that state using restoreState. When i restore state, most…

Connor Whalen
- 130
- 4
3
votes
1 answer
Embed the Autodesk Viewer in a web page
In our web application, we want to view AutoCAD files using Autodesk viewer API.
As per our requirement we want to select the file and need to open directly in auto-desk viewer site, where all default options like 2D, 3D views are available.
Is it…

Jalps
- 31
- 1
- 3
3
votes
2 answers
Python : export keyframe from maya in line
I am trying to make a script that writes all the desired parameters in a line, not in row, to make a pipe to nuke (keyframe in line)
to be valid in nuke, Keyframe need to be like this
translate {{curve R x1 list of valueX}} {curve R x1 list of…

William Eguienta
- 135
- 1
- 13
3
votes
1 answer
how to store a maya nodes hierarchy into a python dictionary
Click here for view the example picture
I need to get the hierarchy Data or store it into a dictionary from the outliner panel from Maya in the right order, how can i archive this ? , im working in autodesk maya and only can be store into a dict for…

Nestor Colt
- 379
- 4
- 18
3
votes
1 answer
How Do I get URN with OSS, Autodesk forge
I have gone through developer.autodesk.com to know more about Forge Platform and I am still looking for the way with which I can get URN of my obj file.
I just need a sample code to move ahead. :)

anand shukla
- 31
- 2
3
votes
1 answer
How to set performance and appearance settings in Autodesk Viewer?
I have been having trouble using JavaScript to preset performance and appearance settings for the viewer.
I wanted to pre-define some of the settings like anti-aliasing, and shadows to be off on load. I am new to this API and basically couldn't…

Mike
- 375
- 1
- 14
3
votes
4 answers
How to share buckets in the Autodesk Data Management API?
How might one share access to their Autodesk bucket to enable other users to view and collaborate on their uploaded models? If the Autodesk Forge Data Management API supports sharing of bucket access or something similar it was clear to me in the…

Mikeumus
- 3,570
- 9
- 40
- 65
3
votes
1 answer
SVF POST job file conversion failure
A friend and I are following the Autodesk Viewer tutorial here:
https://developer.autodesk.com/en/docs/viewer/v2/tutorials/basic-viewer/
We've both completed all the previous steps except for the very last of using the APIs POST job endpoint to…

Mikeumus
- 3,570
- 9
- 40
- 65