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

Error on Packaging #16

Closed
Angelo-Gebauer opened this issue Nov 13, 2020 · 5 comments
Closed

Error on Packaging #16

Angelo-Gebauer opened this issue Nov 13, 2020 · 5 comments
Assignees

Comments

@Angelo-Gebauer
Copy link

Angelo-Gebauer commented Nov 13, 2020

UX Tools for Unreal v0.10.0

UATHelper: Packaging (HoloLens): LogPython: Error: '/Script/UXTools.EUxtPaginateResult' has an invalid 'ScriptName' meta-data value 'Failed, Concurrent Operation': Name contains ',' which is invalid for Python.

UATHelper: Packaging (HoloLens): LogPython: Error: '/Script/UXTools.EUxtPaginateResult' has an invalid 'ScriptName' meta-data value 'Failed, Concurrent User Interaction': Name contains ',' which is invalid for Python.

UATHelper: Packaging (HoloLens): LogPython: Error: '/Script/UXTools.EUxtScrollDirection' has an invalid 'ScriptName' meta-data value 'Up And Down': Name contains ' ' which is invalid for Python.

UATHelper: Packaging (HoloLens): LogPython: Error: '/Script/UXTools.EUxtScrollDirection' has an invalid 'ScriptName' meta-data value 'Left And Right': Name contains ' ' which is invalid for Python.

PackagingResults: Error: '/Script/UXTools.EUxtPaginateResult' has an invalid 'ScriptName' meta-data value 'Failed, Concurrent Operation': Name contains ',' which is invalid for Python.

PackagingResults: Error: '/Script/UXTools.EUxtPaginateResult' has an invalid 'ScriptName' meta-data value 'Failed, Concurrent User Interaction': Name contains ',' which is invalid for Python.

PackagingResults: Error: '/Script/UXTools.EUxtScrollDirection' has an invalid 'ScriptName' meta-data value 'Up And Down': Name contains ' ' which is invalid for Python.

PackagingResults: Error: '/Script/UXTools.EUxtScrollDirection' has an invalid 'ScriptName' meta-data value 'Left And Right': Name contains ' ' which is invalid for Python.

@luis-valverde-ms
Copy link

Thanks for the info @Angelo-Gebauer . I take it that this happens to you when trying to package for HoloLens a project that uses the UXT plugin? What version of UE are you using? Can you send us the full log?

@Angelo-Gebauer
Copy link
Author

Hi, yes we try to package for HoloLens. We're using 4.25.3 We didnt have this problem with the old version of the plugin.
Log:
Log.txt

@luis-valverde-ms
Copy link

Can you try replacing 'ScriptName' by 'DisplayName' in all the enum values in EUxtPaginateResult and EUxtScrollDirection? You should end up with something like this:

UENUM(BlueprintType)
enum class EUxtScrollDirection : uint8
{
	UpAndDown		UMETA(DisplayName = "Up And Down", Tooltip = "The menu will scroll vertically. In this case Tiers will specify the number of rows, and Viewable area will specify the number of columns that are viewable. The collection will populate by filling columns in order."),
	LeftAndRight		UMETA(DisplayName = "Left And Right", Tooltip = "The menu will scroll horizontally. In this case Tiers will specify the number of columns, and Viewable area will specify the number of rows that are viewable. The collection will populate by filling rows in order."),
};

UENUM(BlueprintType)
enum class EUxtPaginateResult : uint8
{
	Success				UMETA(DisplayName = "Success", Tooltip = "The operation completed successfuly."),
	Failed_ConcurrentOperation	UMETA(DisplayName = "Failed, Concurrent Operation", Tooltip = "The operation was aborted due to another move request that has not yet finished."),
	Failed_ConcurrentInteraction	UMETA(DisplayName = "Failed, Concurrent User Interaction", Tooltip = "The operation was aborted because there is another interaction with the object." ),
};

@Angelo-Gebauer
Copy link
Author

Sorry, for now we will just use the old version. We don't really have time to test things.

luis-valverde-ms pushed a commit that referenced this issue Dec 17, 2020
…ingObjectCollection

#Fixing invalid enum value metadata tags from UxtScrollingObjectCollection

EUxtScrollDirection and EUxtPaginateResult Enum values are using the Enumeration Metadata specifier 'ScriptName'. Enumerated values should use the specifier 'DisplayName' instead.

Related work items: #861
#16
@luis-valverde-ms
Copy link

Resolved by Vanessa's fix: 2afc85b

Olli1080 pushed a commit to Olli1080/MixedReality-UXTools-Unreal that referenced this issue Jan 16, 2024
…ingObjectCollection

#Fixing invalid enum value metadata tags from UxtScrollingObjectCollection

EUxtScrollDirection and EUxtPaginateResult Enum values are using the Enumeration Metadata specifier 'ScriptName'. Enumerated values should use the specifier 'DisplayName' instead.

Related work items: #861
microsoft#16
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

No branches or pull requests

3 participants