C# 클래스 TextureHelpers, tf_client

Static helper methods for working with textures
상속: System.Object
파일 보기 프로젝트 열기: wids-eria/tf_client 1 사용 예제들

공개 메소드들

메소드 설명
Duplicate ( Texture2D tex ) : Texture2D

Return a duplicate of tex

FloodFill ( Texture2D tex, Color col, ApplyMode apply ) : void

Flood fill the specified texture with the specified color

FloodFill ( Texture2D tex, int x, int y, int width, int height, Color col, ApplyMode apply ) : void

Flood fill the specified block on the specified texture using the specified color

메소드 상세

Duplicate() 공개 정적인 메소드

Return a duplicate of tex
public static Duplicate ( Texture2D tex ) : Texture2D
tex UnityEngine.Texture2D /// A ///
리턴 UnityEngine.Texture2D

FloodFill() 공개 정적인 메소드

Flood fill the specified texture with the specified color
public static FloodFill ( Texture2D tex, Color col, ApplyMode apply ) : void
tex UnityEngine.Texture2D /// A ///
col Color /// A ///
apply ApplyMode /// A ///
리턴 void

FloodFill() 공개 정적인 메소드

Flood fill the specified block on the specified texture using the specified color
public static FloodFill ( Texture2D tex, int x, int y, int width, int height, Color col, ApplyMode apply ) : void
tex UnityEngine.Texture2D /// A ///
x int /// A ///
y int /// A ///
width int /// A ///
height int /// A ///
col Color /// A ///
apply ApplyMode /// A ///
리턴 void