asc-community / MxEngine

C++ open source 3D game engine
BSD 3-Clause "New" or "Revised" License
1.12k stars 59 forks source link

[Editor][Bug] Fix editors for integers #79

Closed MomoDeve closed 1 year ago

MomoDeve commented 1 year ago

My recent PR (https://github.com/asc-community/MxEngine/pull/69) broke component editors for int32's as I just redirected them to int64 editors, whichs not correct, as rttr cannot assign the properties back, assuming they store values of different type. As a result, some editors were not working

Also decided to replace texture2D -> texture in this PR just for consistency

fall2019 commented 1 year ago

Okay that makes sense.