Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-09-04 | added more data structures to Natvis for msdev | derammo | |
can now debug signal_map and connections in Objects can now view more Variant types, such as packed arrays | |||
2022-07-31 | Visual Studio Natvis file works for Variant again | derammo | |
2022-07-23 | Implement Vector4, Vector4i, Projection | reduz | |
Implement built-in classes Vector4, Vector4i and Projection. * Two versions of Vector4 (float and integer). * A Projection class, which is a 4x4 matrix specialized in projection types. These types have been requested for a long time, but given they were very corner case they were not added before. Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity. **Q**: Why Projection and not Matrix4? **A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming. | |||
2021-06-04 | Rename Quat to Quaternion | Marcel Admiraal | |
2021-06-03 | Rename Variant TRANSFORM to TRANSFORM3D | Aaron Franke | |
Also _transform to _transform3d | |||
2021-02-24 | Added LocalVector to Visual Studio debugger visualization | PouleyKetchoupp | |
2020-12-28 | Incorrect format specifiers used to display some String/StringName data | andrew-softdev | |
2020-11-09 | Variant: Rename Type::_RID to Type::RID | Rémi Verschelde | |
The underscore prefix was used to avoid the conflict between the `RID` class name and the matching enum value in `Variant::Type`. This can be fixed differently by prefixing uses of the `RID` class in `Variant` with the scope resolution operator, as done already for `AABB`. | |||
2020-07-27 | Style: Fix code format scripts compat with non-GNU Unices | Rémi Verschelde | |
It's too hard to get compatibility between GNU and BSD sed, so let's just use perl oneliners. And improve it to also remove trailing tabs, not just spaces. | |||
2019-10-29 | Update natvis file to display Node class correctly in Visual Studio debugger | PouleyKetchoupp | |
2019-03-12 | Fixed & improved Visual Studio custom debugger visualization | PouleyKetchoupp | |
2018-09-17 | Initial version of VS natvis file | elasota | |