Ray

Results 351 comments of Ray

@Crydsch Just pushed the latest camera changes I was working on: - Reviewed camera swinging (up-down movement) - Reviewed camera tilting (left-right movement) - Make movement independent of frame-rate -...

@Crydsch I'm checking the code more carefully and I see no quaternions are used for camera rotations, it keeps using the same previous Euler maths but now through the raymath...

> Calculating the current quat every frame, just to implement quat-based rotations and then reverting back and updating the vectors just does not make any sense. The code would be...

@Crydsch I see the issue with the `camera.mode`, some modes require some specific initialization, it's the same issue we have with current implementation. Probably that's unavoidable... Which low-level functions depend...

@Crydsch I think those functions shouldn't depend on `camera.mode`, in any case, they could include some additional config parameter to accomodate on calling, depending on the mode (checked by caller)....

@refacto what linker errors you have? maybe some missing library on linkage?

Just note that raygui has changed substantially, even bumped version to 2.0. Still some controls (GuiScrollBar, GuiTextBoxMultiline) are under development. It also depends now on raylib 2.0-dev.

Better close this issue... raygui has been greatly updated again and `GuiTextBox()` completely redesigned. We're working on tools development and raygui is our ui system, consequently, it's being updated regularly.

@mandar1jn Sorry, I can't understand the issue. I just tested `GuiColorPicker` in `controls_test_suite` and it works as expected. Please, could you provide a minimal code sample illustrating the issue?

@mandar1jn Issue seems to be located in `ConvertRGBtoHSV()` specifically for `RAYWHITE` (or any other initial value with R=G=B). If you init `portalColor = RED` it works as expected. It seems...