-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export animations only, fixes for glTF and Maya exporter using MEL #702
Conversation
…SimultaneousLights, unlit) Add connection to log prints
Add KHR_materials_unlit checkbox
Fix base color and metallic roughness textures names when exporting a standard material to glTF
Fix diffuse and alpha textures merging when alpha is read from RGB
Add Node editor (NE) templates Update Attribute editor (AE) templates
Export alphaCutOff attribute for Masked StingrayPBS material only Export merged color texture for Masked StingrayPBS material Fix default color initialisation when merging textures
Add log level
Export babylon material attributes
# Conflicts: # 3ds Max/Max2Babylon/Exporter/BabylonExporter.Material.cs # SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs
# Conflicts: # Maya/Forms/ExporterForm.Designer.cs
…eras, mesh and materials
# Conflicts: # 3ds Max/Max2Babylon/Exporter/BabylonExporter.Mesh.cs # Maya/Exporter/BabylonExporter.Material.cs # SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs # SharedProjects/BabylonExport.Entities/BabylonMaterial.cs # SharedProjects/BabylonExport.Entities/BabylonMesh.cs
Clean up code
# Resolved Conflicts: # 3ds Max/Max2Babylon/Forms/ExporterForm.cs # BabylonJS_Installer/BabylonJS_Installer/BabylonJS_Installer.csproj # BabylonJS_Installer/BabylonJS_Installer/Downloader.cs # BabylonJS_Installer/BabylonJS_Installer/MainForm.Designer.cs
Next are TECHNICAL notes on the export animation only feature. The implementation of this feature has been discussed in this issue and this PR and other nested threads. The feature is mostly handled during Babylon export. The babylon to glTF part has been changed only to handle backdoor properties like animations of target cameras or lights. Regarding exported data when exporting only animations:
Regarding implementation:
|
I don't think it's a surprise, but since you have chosen the path of unique names, we will most likely keep our own implementation on our side and won't be using this for our pipeline. |
@noalak the larger the PR, the harder it is to review and test. Can we please address a single issue for each PR moving forward? Especially in cases like this where the issues aren't related at all |
private BabylonNode exportNodeRec(IIGameNode maxGameNode, BabylonScene babylonScene, IIGameScene maxGameScene) | ||
{ | ||
BabylonNode babylonNode = null; | ||
using Autodesk.Max; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the whitespace changed in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good for the most part, I'm just concerned about the whitespace damaging our file history. :)
Also, the whitespace changes are blocking the auto-merge |
# Resolved Conflicts: # 3ds Max/Max2Babylon/Exporter/BabylonExporter.cs # 3ds Max/Max2Babylon/Forms/ExporterForm.cs
Whitespace fixed. |
We will definitely make a PR for each feature in the future. |
@noalak , for the documentation, a single PR should be sufficient for the exporter UI changes |
Remove unused variable # Resolved Conflicts: # 3ds Max/Max2Babylon/Exporter/BabylonExporter.Mesh.cs
This PR is resolving issues:
Disclaimer:
The 'export animations only' feature is implemented for 3ds Max.
@Drigax, @elpie89, @Selmar are invited to test the export and import process. Samples are provided in the exporter AnimationsOnly samples folder or can be downloaded via WeTransfer here.
Once conclusive, we will implement the solution for Maya as well.