DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ CanvasDrawPoint()

static void Debug::CanvasDrawPoint ( float x1,
float y1,
int color )
inlinestaticprivate

Draws a "point" on the screen at x,y coordinates Debug.ClearCanvas(); for(int i = 0; i < 700;i++) { float val = i/700; float y = Easing.EaseInOutExpo(val); Debug.CanvasDrawPoint(i,y*700,ARGBF( 0.6, 1, 1, 1 )); }.

См. определение в файле Debug.c строка 73

74 {
75 CanvasDrawLine(x1, y1, x1+1, y1, 1, color);
76 }
static void CanvasDrawLine(float x1, float y1, float x2, float y2, float width, int color)
Определения Debug.c:56

Перекрестные ссылки CanvasDrawLine().