Michael Pollind
Michael Pollind
At the moment we declare too much in the global namespace. It's generally considered bad practice to place everything in the global namespace. http://wiki.c2.com/?GlobalVariablesAreBad
Signed-off-by: Michael Pollind ## What does this PR do? remove mouse wrap logic in the viewport. I need to revisit this with quite a few other changes before this could...
ref: https://github.com/o3de/o3de/issues/6624 Signed-off-by: Michael Pollind ## What does this PR do? correct the logic to correctly display memory size. integer was too small so when I multiplied the value by...
Signed-off-by: Michael Pollind ## What does this PR do? when I was working on this change: https://github.com/o3de/o3de/pull/9925. I would rather of passed a vector then the beginning and a size...
Questions: I want to query by a list of ids but I get this error when I try to query by this: ``` byIds(ids: string[]) { return this._realm .objects(Provider) .filtered('id...
so I have these utility methods that I use to tie the navigation bar with the breadcrumb list. should allow for some custom breadcrumbs by iterating over the entries. ```...
this replaces the saveThreadManager with a singleSubject I think this change is a lot easier to follow then some of the strange logic with TaskMaster. - create a new world...
Terasology does not use or promote a consistent feature set or technologies for handling concurrency. In some situations the number of threads are over-provisioned, and in some cases its under-provisioned....
I think it makes a lot of sense to take advantage of bgfx. a lot of the complex interactions for the graphics api can be simplified going this way. the...
Here is an attempt to revive the gooey CLI tool. ended up cutting things down and trying to simplify things. I don't really like how the original groovy code tries...