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

Wrong type definitions for Number properties in UE5 #86

Open
hiperbou opened this issue May 28, 2022 · 1 comment
Open

Wrong type definitions for Number properties in UE5 #86

hiperbou opened this issue May 28, 2022 · 1 comment

Comments

@hiperbou
Copy link

hiperbou commented May 28, 2022

I am using Unreal 5.0.1 and Unreal.js plugin from the marketplace (version 0.6.1)
I noticed that some type definitions are lost for numeric values, for instance:

declare class Rotator { 
	Pitch: any;
	Yaw: any;
	Roll: any;

declare class Vector { 
	X: any;
	Y: any;
	Z: any;

declare class Vector4 { 
	X: any;
	Y: any;
	Z: any;
	W: any;

Other classes seem to be generated correctly

declare class Vector2f { 
	X: number;
	Y: number;

declare class Vector3f { 
	X: number;
	Y: number;
	Z: number;
@crocuis
Copy link
Contributor

crocuis commented Jun 16, 2022

fixed. 63176dd

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

2 participants