Skip to content

Commit 5760de5

Browse files
author
DESKTOP-F8VO8FK\Austin
committed
[CHANGED] version number
[FIXED] property/channel struct which didnt allow builds to be made
1 parent c4cc6d0 commit 5760de5

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Assets/FbxExporters/Editor/FbxExporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1475,7 +1475,7 @@ public float Convert(float value)
14751475
struct FbxPropertyChannelPair {
14761476
public string Property { get ; private set; }
14771477
public string Channel { get ; private set; }
1478-
public FbxPropertyChannelPair(string p, string c) {
1478+
public FbxPropertyChannelPair(string p, string c):this() {
14791479
Property = p;
14801480
Channel = c;
14811481
}

Assets/FbxExporters/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Copyright (c) 2017 Unity Technologies. All rights reserved.
55

66
See LICENSE.txt file for full license information.
77

8-
VERSION: 1.2.0b1
8+
VERSION: sprint42
99

1010
Requirements
1111
------------

Assets/Integrations/Autodesk/maya/scripts/unitySetupUI.mel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ global string $unityImportIconPath = "import.png";
77
global string $unityExportIconPath = "export.png";
88
global string $unityIconPath = "unity.png";
99

10-
global string $unityFamilyLabel = "The UnityFbxForMaya plugin (v.{Version}) allows you to reliably exchange and review your work between Maya and Unity.";
10+
global string $unityFamilyLabel = "The UnityFbxForMaya plugin (v.sprint41) allows you to reliably exchange and review your work between Maya and Unity.";
1111
global string $unityImportLabel = "Import an FBX file from a Unity project and auto-configure for exporting";
1212
global string $unityExportLabel = "Export Model to Unity";
1313

RELEASE_NOTES.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
**Version**: sprint42
44

55
FIXES
6-
* FbxExporter: fixed support for continuous Euler rotations in animations
76
* FbxExporter: fixed issue where animations would sometimes be exported before their components, causing errors'
87
* FbxExporter: fixed bug where skinning weights were incorrect on export
98

0 commit comments

Comments
 (0)