"Komatsu teaches you to develop" Unity practical skills "extension function (add a directly usable interface to the system code)

Source: Internet
Author: User

The extension function means adding an interface that you write to without a source script and can be called directly.

usingUnityengine;usingSystem.Collections;namespaceextensionmethods{ Public Static classMyExtensions { Public Static voidSetlocalpositionx ( ThisTransform Transform,floatx) {Vector3 newposition=NewVector3 (x, TRANSFORM.LOCALPOSITION.Y, transform.localposition.z); Transform.localposition=newposition; }         Public StaticT getsafecomponent<t> ( ThisGameobject Go) {T Component= go. Getcomponent<t>(); if(Component = =NULL) {Cdebug.logerror ("!!! Error:you is finding compoent of type:"+typeof(T) +", but found None,gameobject:"+go.name); }            returncomponent; }    }}

As I wrote above, this can be done directly in the transform. Setlocalpositionx () to set the coordinates.

and Getsafecomponent () is to prevent you from looking for a script with a null reference and not knowing where the problem is.

The conditions used here are to add using Extensionmethods to the header file;

"Komatsu teaches you to develop" Unity practical skills "extension function (add a directly usable interface to the system code)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.