-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extensions for GameObject, Transform, and String to provide convience methods #416
Commits on Nov 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 622f9af - Browse repository at this point
Copy the full SHA 622f9afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 923b82f - Browse repository at this point
Copy the full SHA 923b82fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5115e84 - Browse repository at this point
Copy the full SHA 5115e84View commit details -
Add extension to convert a null string to an empty string to prevent …
…type error if needed
Configuration menu - View commit details
-
Copy full SHA for feacd85 - Browse repository at this point
Copy the full SHA feacd85View commit details -
Configuration menu - View commit details
-
Copy full SHA for a881562 - Browse repository at this point
Copy the full SHA a881562View commit details -
Configuration menu - View commit details
-
Copy full SHA for dfb2342 - Browse repository at this point
Copy the full SHA dfb2342View commit details -
GameObject extension to check if gameObject has a component, used to …
…improve readability of code or force null result to be a bool instead
Configuration menu - View commit details
-
Copy full SHA for 24eca2a - Browse repository at this point
Copy the full SHA 24eca2aView commit details -
Extensions method (with overloads) to check if gameObject contains an…
… instance of any one of the given components
Configuration menu - View commit details
-
Copy full SHA for 5ed7695 - Browse repository at this point
Copy the full SHA 5ed7695View commit details -
Extension method (with overloads) to check if a gameObject has all of…
… the given components.
Configuration menu - View commit details
-
Copy full SHA for 0b979ec - Browse repository at this point
Copy the full SHA 0b979ecView commit details -
Extension method to check if gameObject has any of the given componen…
…ts in any of its children.
Configuration menu - View commit details
-
Copy full SHA for 5c28bf3 - Browse repository at this point
Copy the full SHA 5c28bf3View commit details -
Extension method to check if gameObject or any of it's children has a…
… component. Intended to improve readability or force null result to a bool if needed
Configuration menu - View commit details
-
Copy full SHA for d2d7f74 - Browse repository at this point
Copy the full SHA d2d7f74View commit details -
Extension method to search for a specific component based on the name…
… of the child object it is attached to.
Configuration menu - View commit details
-
Copy full SHA for 5b507f6 - Browse repository at this point
Copy the full SHA 5b507f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 310f1f5 - Browse repository at this point
Copy the full SHA 310f1f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 43a011e - Browse repository at this point
Copy the full SHA 43a011eView commit details -
Fix build failure due to ambiguous reference to Object introduced by …
…new extension methods using System
Configuration menu - View commit details
-
Copy full SHA for 1d08d21 - Browse repository at this point
Copy the full SHA 1d08d21View commit details
Commits on Nov 18, 2023
-
Update JotunnLib/Extensions/GameObjectExtension.cs
Co-authored-by: Maximilian Schmöcker <39767545+MSchmoecker@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 3ff63a5 - Browse repository at this point
Copy the full SHA 3ff63a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7ae8bbc - Browse repository at this point
Copy the full SHA 7ae8bbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9518875 - Browse repository at this point
Copy the full SHA 9518875View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2eff6f8 - Browse repository at this point
Copy the full SHA 2eff6f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for f799a32 - Browse repository at this point
Copy the full SHA f799a32View commit details -
Better accomplished by using Utils.FindChild() + GetComponent() so re…
…move redundant method
Configuration menu - View commit details
-
Copy full SHA for 3c9b434 - Browse repository at this point
Copy the full SHA 3c9b434View commit details -
Configuration menu - View commit details
-
Copy full SHA for 20643f9 - Browse repository at this point
Copy the full SHA 20643f9View commit details -
This method is redundant and can be written as string ?? string.Empty…
… or string ?? ""
Configuration menu - View commit details
-
Copy full SHA for 6d1bee6 - Browse repository at this point
Copy the full SHA 6d1bee6View commit details -
Rewrite to avoid null checks, not sure if I could just use if (!gameO…
…bject.GetComponent(name)) instead though?
Configuration menu - View commit details
-
Copy full SHA for 030b8c8 - Browse repository at this point
Copy the full SHA 030b8c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for bebcbbc - Browse repository at this point
Copy the full SHA bebcbbcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 64c0300 - Browse repository at this point
Copy the full SHA 64c0300View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2220bf - Browse repository at this point
Copy the full SHA b2220bfView commit details -
Take advantage of Monobehavior implicit cast to bool and use bool che…
…ck instead of counter
Configuration menu - View commit details
-
Copy full SHA for f7441aa - Browse repository at this point
Copy the full SHA f7441aaView commit details