Questions tagged [3dsmax]

Autodesk 3ds Max, formerly 3D Studio MAX, is a modeling, animation and rendering package. It has both an built in scripting language (MAXScript) and an SDK.

Autodesk 3ds Max, formerly 3D Studio MAX, is a modeling, animation and rendering package. It has both an built in scripting language (MAXScript) and an SDK.

The default .max file format is a proprietary binary format, however it also supports the standard .FBX format for more interoperability.

The SDK now has a new managed .NET plug-in loader, making it easier to develop plug-ins in C# or other .NET languages. With more than 200 sample plug-in projects, 3ds Max's comprehensive SDK offers both deep and broad access to satisfy even the most demanding production scenarios.

Official Site

594 questions
3
votes
1 answer

Is 3ds Max scriptable in C++ or C# instead of Python?

3DS Max offers a Python API, but that API is built on top of SWiG/CPython. I'm curious, is it possible to script 3DS MAX using C++ or C#, given that SWiG is simply a wrapper for (predumably) C/C++ API?
Dmitri Nesteruk
  • 23,067
  • 22
  • 97
  • 166
3
votes
1 answer

3D Model is not looking same as size in ARKit

Problem statement I am facing a trouble in AR that our model size does not match with real products.This iPhone has the same dimension as real iPhone but it doesn't match with real products. IPhone Model Size - (5.44 x 2.64 x 0.28 in)…
Arpit
  • 31
  • 2
3
votes
2 answers

What's the best way to deal with a non-const-aware Library/SDK?

I've been working for longer now with the 3ds max SDK, which in nearly all parts doesn't use const at all. So even a Width() or Height() getter of a Bitmap isn't marked as const. This has been already a real annoyance in small projects, but since…
user2328447
  • 1,807
  • 1
  • 21
  • 27
3
votes
0 answers

3ds Max to three.js - How to export simple animation?

I have a very basic scene in 3ds Max with a single cube and a single animation. The animation only moves the box from position A to position B. No morph target animation, no bones etc. Just plain "movement" animation. Below are the two keyframes…
Nicky
  • 3,607
  • 6
  • 33
  • 64
3
votes
2 answers

Need advice on best workflow to export from 3ds Max to three.js

I've been trying various ways, it seems that 3ds Max 2017 broke the native three.js exporter (only get 1kb .js exports). The commercial exporter from Prototech solutions seems to work OK, but exports everything into one big HTML file (which is not…
Tony
  • 33
  • 4
3
votes
2 answers

Three.js .obj loader not working with 3Ds Max .obj

I am trying to load a .obj into Three.js using there objLoader. var loader = new THREE.OBJLoader( manager ); loader.load( 'obj/gate-2.obj', function ( object ) { object.traverse( function ( child ) { …
Matt Hammond
  • 765
  • 1
  • 7
  • 25
3
votes
3 answers

How to check if MAX has finished loading

I am trying to instantiate a program via a python script as follows os.startfile( '"C:/Program Files/Autodesk/3ds Max 2010/3dsmax.exe"' ) since 3dsMax takes a bit of time to load, I wanna wait till it has finished loading completely. I check the…
ababeel
  • 435
  • 1
  • 8
  • 25
3
votes
0 answers

3ds Max .NET SDK and creating reference maker

I have .Net DLL for Max with ui, and I want to react to parameter changes of some nodes in the viewport. The easiest solution that came up to me, was to create ReferenceMaker plugin and set reference for node I want to watch. According to the…
zwadar
  • 105
  • 1
  • 8
3
votes
2 answers

Can't upgrade Visual studio solution to 2013

I don't know what is wrong with the project, i have Visual Studio 2013 on a new computer and i never had 2012, this is a clean computer. I made a project with the 3DS Max 2015 SDK That makes a clean project, but turns out it's made for 2012 for some…
3
votes
0 answers

exporting 3dsmax file with animations to threejs

I'm new to 3dsmax and threejs. I bought a rigged model with several animations in the same file, but I'm having trouble understanding how to export into threejs. I tried using the instructions here:…
Ron Stevenson
  • 166
  • 1
  • 13
3
votes
2 answers

Get bone ID from its name or from the index on skin list in MaxScript

I have an bone name (e.g. Bone002) and I want to get the bone ID for it (not the index in skin list, but the ID that is required e.g. in skinOps.SetVertexWeights). I know that reverse operation looks like this: skinMod =…
PolGraphic
  • 3,233
  • 11
  • 51
  • 108
3
votes
1 answer

Import .ply files to unity 3D

I am trying to import .ply in to Unity 3D with vertex colors any way to accomplish this? I don't know how to convert .ply file to .obj, .dae or .fbx. As an example there should be a way to do .ply = .obj + .mtl Please help me
Rukshan Dangalla
  • 2,500
  • 2
  • 24
  • 29
3
votes
0 answers

how toset a same generic scale for different 3d models in jpct-ae

In my app, am using JPCT-ae for 3d rendering. I am downloading 3d models form server and rendering it in android device. my problem is some models are small and some are very big. I want to set one generic scale for all the models regardless of what…
gooner
  • 349
  • 1
  • 4
  • 17
3
votes
1 answer

Converting coordinates system for FBX model in OpenGL

I load FBX models using Autodesk FBX SDK2013.The models get rotated 90 degrees on X-Axis by default. The SDK supplies this method : FbxAxisSystem::OpenGL.ConvertScene(scene); to perform axis conversion.But it doesn't work.Calling it changes…
Michael IV
  • 11,016
  • 12
  • 92
  • 223
3
votes
4 answers

Load 3D object in Silverlight 3/4

Is is possible to load 3D objects in a Silverlight 3 or Silverlight 4 application? (3DS Max objects or other formats). Besides loading the object I also need some basic interaction - simple rotations, zoom in/out.
kjv
  • 11,047
  • 34
  • 101
  • 140
1 2
3
39 40