C# 클래스 TextureScaler, Unity-WinForms

파일 보기 프로젝트 열기: Meragon/Unity-WinForms 1 사용 예제들

공개 메소드들

메소드 설명
scale ( Texture2D tex, int width, int height, FilterMode mode = FilterMode.Trilinear ) : void

Scales the texture data of the given texture.

scaled ( Texture2D src, int width, int height, FilterMode mode = FilterMode.Trilinear ) : Texture2D

Returns a scaled copy of given texture.

비공개 메소드들

메소드 설명
_gpu_scale ( Texture2D src, int width, int height, FilterMode fmode ) : void

메소드 상세

scale() 공개 정적인 메소드

Scales the texture data of the given texture.
public static scale ( Texture2D tex, int width, int height, FilterMode mode = FilterMode.Trilinear ) : void
tex UnityEngine.Texture2D Texure to scale
width int New width
height int New height
mode FilterMode Filtering mode
리턴 void

scaled() 공개 정적인 메소드

Returns a scaled copy of given texture.
public static scaled ( Texture2D src, int width, int height, FilterMode mode = FilterMode.Trilinear ) : Texture2D
src UnityEngine.Texture2D
width int Destination texture width
height int Destination texture height
mode FilterMode Filtering mode
리턴 UnityEngine.Texture2D