-
Notifications
You must be signed in to change notification settings - Fork 435
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
Use unijson parser #184
Use unijson parser #184
Conversation
038b3c0
to
839847e
Compare
Separate #189 |
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.
LGTM with nits
{ | ||
|
||
} | ||
|
||
public glTFBuffer(IBytesBuffer storage) |
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.
public glTFBuffer(IBytesBuffer storage) | |
public glTFBuffer(IBytesBuffer storage) : this() |
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.
I think that it is not necessary
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.
Oops, sorry. Other fields are not initialized by the default constructor. You are right.
public glTFMesh() | ||
{ | ||
} | ||
|
||
public glTFMesh(string _name) |
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.
public glTFMesh(string _name) | |
public glTFMesh(string _name) : this() |
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.
I think that it is not necessary
Please wait merging this PR until |
Add experimental switch ImporterContext.UseUniJSONParser .