raddebugger
raddebugger copied to clipboard
`.x` `.y` `.z`. `.w` accessor aliases for `[0]`, `[1]`, `[2]`, `[3]` for arrays/slices
Odin has builtin support for these accessors including rgba and swizzling.
example:
vec: [4]f32
In raddbg I wasn't able to inspect vec.x, vec.y, vec.z, vec.w obviously, had to change to vec[0], .... which made debugging very painful. Similarly swizzling is another one- vec.xyxy would not work in raddbg currently