Andrew Bradley

Results 547 comments of Andrew Bradley
trafficstars

To combine multiple libraries, such as NaughtyAttributes, MyBox, and [Unity Editor Toolbox](https://github.com/arimger/Unity-Editor-Toolbox), we need to merge their `CustomEditor(Object)` implementations, right? https://github.com/Deadcows/MyBox/blob/master/Tools/Internal/UnityObjectEditor.cs https://github.com/arimger/Unity-Editor-Toolbox/blob/aabf50dfc5b924906de69d0146039fc229a3efd4/Assets/Editor%20Toolbox/Editor/ToolboxEditor.cs https://github.com/dbrizov/NaughtyAttributes/blob/master/Assets/NaughtyAttributes/Scripts/Editor/NaughtyInspector.cs

Looks like `MyBox` defers to the built-in inspector GUI unless foldout needs to do stuff, and it renders `ButtonMethods` before and after. Foldout has to do the same kind of...

Not a specific need; just a general desire to avoid modifying the global environment to avoid possible incompatibilities with other libraries. If I require any modifications to the global environment,...

Thanks. Time permitting I'll send a pull request with a sample. Till then, I'm subscribed to this thread and can answer questions.

Unfortunately I don't have time to maintain a plugin these days. But if anyone wants to fork or maintain it, let me know. On Sun, Nov 21, 2021, 4:41 AM...

If tpm isn't even reading the `@plugin` value then why are we using `set -g ` syntax? That seems so unnecessarily bizarre and confusing. I would prefer to list plugins...

I don't actually need or want to have the options in a separate file; I was just rhetorically pointing out that the current implementation -- hacky regex parsing of the...

Is it possible for a maintainer to post a minimal example of the issue with aliases? I posted two examples below; are either or both of those cases accurate? I've...

I played around with the compiler API last night. I tried extracting types solely from the type system, avoiding the AST entirely. I created a program, then grabbed the exports...

What is a good place to ask about nitty gritty compiler internals? Is there a subreddit, a Slack community, or something where people like us congregate? It's tough to ask...