Skip to content
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

Merged
merged 87 commits into from
Dec 12, 2019
Merged

Export animations only, fixes for glTF and Maya exporter using MEL #702

merged 87 commits into from
Dec 12, 2019

Conversation

noalak
Copy link
Contributor

@noalak noalak commented Dec 3, 2019

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.

noalak and others added 30 commits September 24, 2019 10:50
…SimultaneousLights, unlit)

Add connection to log prints
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
Export babylon material attributes
# Conflicts:
#	3ds Max/Max2Babylon/Exporter/BabylonExporter.Material.cs
#	SharedProjects/Babylon2GLTF/GLTFExporter.Material.cs
# Conflicts:
#	Maya/Forms/ExporterForm.Designer.cs
# 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
# 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
@noalak
Copy link
Contributor Author

noalak commented Dec 3, 2019

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 user is responsible of node's name uniqueness (1st solution chosen).

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.
Simple animations and group animations are both handled just as before (minimal changes, mostly fixes for unusual cases).

Regarding exported data when exporting only animations:

  • meshes, lights and cameras are exported as nodes (=dummies)
  • the nodes exported are only the relevant ones: either animated nodes or their parent
  • this mean that non-animated nodes on leaves are not exported
  • non-animated intermediate nodes need to be exported as they are required by the glTF loader of babylon
  • materials and other global or custom parameters are not exported

Regarding implementation:

  • skeletons are not exported (a skeleton is a link between a mesh and a set of bones and will not vary between animations)
  • bones are exported (they are the animated dummies)
  • meshes are exported as dummies immediately to avoid a pass on useless features (mostly geometry)
  • cameras and lights are first exported completely, then their transform and animations get fixed and finally they are converted back to simple nodes. The time required to completely export a camera or light is minimal anyway.

@Selmar
Copy link
Contributor

Selmar commented Dec 5, 2019

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.

@Drigax
Copy link
Contributor

Drigax commented Dec 9, 2019

@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;
Copy link
Contributor

@Drigax Drigax Dec 9, 2019

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?

Copy link
Contributor

@Drigax Drigax left a 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. :)

@Drigax
Copy link
Contributor

Drigax commented Dec 10, 2019

Also, the whitespace changes are blocking the auto-merge

# Resolved Conflicts:
#	3ds Max/Max2Babylon/Exporter/BabylonExporter.cs
#	3ds Max/Max2Babylon/Forms/ExporterForm.cs
@noalak
Copy link
Contributor Author

noalak commented Dec 11, 2019

Whitespace fixed.

@noalak
Copy link
Contributor Author

noalak commented Dec 11, 2019

We will definitely make a PR for each feature in the future.
For documentation, do you want a single PR or several ones ?

@Drigax
Copy link
Contributor

Drigax commented Dec 11, 2019

@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
@Drigax Drigax merged commit eb05256 into BabylonJS:master Dec 12, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants