How to export .3ds file for using RenderMonkey from 3dsMax 2010? When I look into Stream Mapping in RenderMonkey, there are POSITION, NORMAL, TEXCOORD, TANGENT, BINORMAL, TESSFACTOR etc. I want to know how that information export for sending vertex shader as streaming data. Thanks in advance.
How to export .3ds file for using RenderMonkey from 3dsMax?
682 Views Asked by P-P At
2
There are 2 best solutions below
0
Alin
On
You can use DirectX Exporter for 3ds Max to export your scenes to a x file which contains texcoords, normal and binormal. The latest release can even convert a standard material with multiple UV coordinates to a DirectX material(.fx) and generate shader code such as tangent-space normal mapping.
Related Questions in DIRECTX
- Make screenshot of DirectX window that is hidden and doesn't have focus
- Draw a sphere on a billboard with world normal from a pointlist
- DirectX - Pixel Shader 3.0 doesn't work
- D3D11 Post Shader Results in Dark Image
- Drawing a textured quad looks distorted
- DirectX 9 vertex colors ingored when lighting is enabled?
- Constant buffer is empty when passed HLSL C++
- D3DX11CompileFromFile Invalid Arguments C++
- DirectX libs in x64 program
- How to use a huge array in HLSL (error X4505)
- Relationship between AFX_WM_DRAW2D and WM_PAINT in MFC Application
- Textured cube renders blank in DirectX
- Invoke button in a game / external program C#
- DirectX VSIX Installer Installation Failed
- Normals are not transfered to DirectX 11 shader correctly - random, time-dependent values?
Related Questions in SHADER
- Water rendering in opengl
- Draw a sphere on a billboard with world normal from a pointlist
- DirectX - Pixel Shader 3.0 doesn't work
- Should Meshes with and without Skeleton use different Shaders?
- unity custom shader not receiving Shadow
- Constant buffer is empty when passed HLSL C++
- Unity | 'gameobject.renderer.material.color' in version 5.x
- Shader programming with ShaderLab and CG in unity
- How to use a huge array in HLSL (error X4505)
- mat4 type in attribute shader
- Reading a shader from a .txt file using a structure
- Rendering a circle with a Vertex shader in DirectX
- Blur the camera at a particular point Unity2D
- Render multiple models in OpenGL with a single draw call
- Why passing parameter is OK between Vertex and Fragment shader
Related Questions in 3DSMAX
- Safe frame calculation
- THREE: Controls are not smooth due to lots of models
- Three.js importing a character with skeleton from 3ds max
- Python scripting in 3dsmax
- Dot product with local axis in maxscript
- Need advice on best workflow to export from 3ds Max to three.js
- FBX Import At Runtime
- Run Python on MaxScripts
- load 3d model example using three js
- How can I clone an object in 3dsmax by maxscript without pop-out menu?
- three.js not displaying all meshes
- How do I edit Border using editable poly in 3ds Max?
- Quick and efficient way to transfer from an flt object with rgb/rgba textures to fbx with jpg/png textures
- Color correction matrix in 3DS max on texture
- Converting 3D Studio Max 8 scripts to 2011
Related Questions in EXPORTER
- Export scraping data in multiple formats using scrapy
- Sencha Grid Exporter fails when exporting to CSV or any other type other than xlsx?
- Export a hash from a module to a script
- Where does blackbox exporter store probe data?
- Grafana query parsing error with label_values
- How to export .3ds file for using RenderMonkey from 3dsMax?
- Getting error while trying to use env variable/variable in custom-metrics.toml
- Camunda 8/Zeebe Exporter save record to PostgreSQL using Spring
- Is there an Artifactory exporter/Datasource to Grafana, to create an Dashboard with information about artifactory folders (size files/subfolders etc)
- Extract Individual URL Request Counts
- How can I export a function with Moose::Exporter?
- Not able to Run celery-prometheus-exporter
- How can I send traces directly to webservice without using opentelemtry collector using oltp exporter in http protocol?
- Unable to export traces to OpenTelemetry Collector on Kubernetes
- Prometheus redis exporter
Related Questions in RENDERMONKEY
- RenderMonkey not recognising my variables
- How to export .3ds file for using RenderMonkey from 3dsMax?
- RenderMonkey / GLSL camera & viewpos
- Usage of custom and generic vertex shader attributes in OpenGL and OpenGL ES
- Modifying a uniform variable inside a shader program to be used by another shader program - RenderMonkey
- RenderMonkey opengles example compile failed with error C0118: macros prefixed with 'GL_' are reserved
- Shader programming , create light interaction to image
- HLSL invalid ps_2_0 input semantic POSITION0
- glsl es const mat2 array
- Does RenderMonkey have a bug in TEXCOORD stream mapping for GLSL?
- WGL extension and virtualbox
- Shadow Map in RenderMonkey
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Which streams do you want/need? A 3ds usually contains POSITION, NORMAL, and TEXCOORD. If you export from 3DSMax to an OBJ then you have more control over exactly what gets exported. TANGENT and BINORMAL are used for shaders such as bump-mapping and are generated by RenderMonkey. I don't know how to use TESSFACTOR. Just make sure that your VS input struct uses the correct semantic (pink text in rendermonkey) for each input stream and RM will populate them appropriately.