Sean Francis N. Ballais
Sean Francis N. Ballais
I found another way of converting `datatypes.Date` to `time.Time`. You can do: ```` dVal, _ := dbRecord.Date.Value() d := dVal.(time.Time) ```` **EDIT**: Only use this if you only care about...
I'll work on this soon.
I'll try that one out tomorrow.
Hey, @albertvaka! I've just tested it. The camera now rotates around the camera center. However, zoom still does not.
Hey, @albertvaka! Works great! The zoom now runs perfectly. Good job. @grimfang4, I would recommend merging this PR. One issue I did notice was that, when moving the camera when...
Since the camera is part of SDL_gpu, I think it is best that we have it as an option. I can imagine limited use cases where the camera can be...
Hey, @albertvaka! Sorry for the late reply. I discovered something with your fix (#206): The origin became the center of the window, rather than the top-left corner. This affected drawing...
The way I interpret `use_centered_origin` is that it only affects the camera, not the origin of everything. A justification to my interpretation could be seen by checking how the `Camera`...
@grimfang4, I see. So, when we set `use_centered_origin` to `true`, the world-space origin will now initially be located in the screen-space center, right? @albertvaka, given @grimfang4's opinion, I now think...