From b84148b92ebb15c2c6fc73cd55cd37c834cf2076 Mon Sep 17 00:00:00 2001 From: JailDoctor Date: Fri, 14 Feb 2025 16:10:34 +0100 Subject: [PATCH] Update Home --- Home.md | 104 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 102 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index 1090450..657cfa1 100644 --- a/Home.md +++ b/Home.md @@ -1,7 +1,107 @@ Referència per categories: -### SURFACES: +### SURFACES * [surf.new()](surf_new) -* [surf.load(file)](surf_load) +* [surf.load(filename)](surf_load) * [surf.free(surface)](surf_free) * [surf.size(surface)](surf_size) + +### PALETES +* [pal.load(filename)](pal.load) +* [pal.set(palette)](pal.set) +* [pal.color(index)](pal.color) +* [pal.color(index, r, g, b)](pal.color) +* [pal.trans([index])](pal.trans) +* [pal.sub()](pal.sub) +* [pal.sub(index)](pal.sub) +* [pal.sub(index, color)](pal.sub) +* [pal.sub(index1, index2, color)](pal.sub) + +### PINTAT +* [draw.dest()](draw.dest) +* [draw.dest(surface)](draw.dest) +* [draw.dest(x, y)](draw.dest) +* [draw.dest(x, y, color)](draw.dest) +* [draw.source(surface)](draw.source) +* [draw.source(x, y)](draw.source) +* [draw.source(x, y, color)](draw.source) +* [draw.map(surface)](draw.map) +* [draw.map(x, y)](draw.map) +* [draw.map(x, y, tile)](draw.map) +* [draw.map(x, y, sx, sy, w, h, layer)](draw.map) +* [draw.cls([color])](draw.cls) +* [draw.clip()](draw.clip) +* [draw.clip(x, y, w, h)](draw.clip) +* [draw.origin()](draw.origin) +* [draw.origin(x, y)](draw.origin) +* [draw.tolocal(x, y)](draw.tolocal) +* [draw.pen(color)](draw.pen) +* [draw.paper(color)](draw.paper) +* [draw.line(x0, y0, x1, y1, [color])](draw.line) +* [draw.hline(x0, y, x1, [color])](draw.hline) +* [draw.vline(x, y0, y1, [color])](draw.vline) +* [draw.rect(x0, y0, x1, y1, [color])](draw.rect) +* [draw.rectfill(x0, y0, x1, y1, [color])](draw.rectfill) +* [draw.circ(x, y, r, [color])](draw.circ) +* [draw.circfill(x, y, r, [color])](draw.circfill) +* [draw.oval(x0, y0, x1, y1, [color])](draw.oval) +* [draw.ovalfill(x0, y0, x1, y1, [color])](draw.ovalfill) +* [draw.pattern(pattern)](draw.pattern) +* [draw.tline(x0, y0, x1, y1, mx, my, [mdx, mdy])](draw.tline) +* [draw.thline(x0, y, x1, mx, my, [mdx, mdy])](draw.thline) +* [draw.tvline(x, y0, y1, mx, my, [mdx, mdy])](draw.tvline) +* [draw.blit(sx, sy, sw, sh, dx, dy, [dw, dh, flipx, fpliy, invert])](draw.blit) +* [draw.blit_r(sx, sy, sw, sh, dx, dy, a)](draw.blit_r) +* [draw.print(text, x, y, [color])](draw.print) + +* [music.play(filename)](music.play) +* [music.pause()](music.pause) +* [music.resume()](music.resume) +* [music.stop()](music.stop) +* [music.pos()](music.pos) +* [music.pos(position)](music.pos) + +* [sound.load(filename)](sound.load) +* [sound.free(sound)](sound.free) +* [sound.play(sound)](sound.play) +* [sound.stop(sound)](sound.stop) + +### SISTEMA +* [sys.time()](sys.time) +* [sys.beat()](sys.beat) +* [sys.beat(beats)](sys.beat) +* [sys.turbo([boolean])](sys.turbo) +* [sys.dir()](sys.dir) +* [sys.quit()](sys.quit) + +### FINESTRA +* [win.zoom()](win.zoom) +* [win.zoom(value)](win.zoom) +* [win.fullscreen()](win.fullscreen) +* [win.fullscreen(boolean)](win.fullscreen) +* [win.cursor()](win.cursor) +* [win.cursor(boolean)](win.cursor) +* [win.res()](win.res) +* [win.res(w, h)](win.res) + +### CONFIGURACIÓ +* [conf.key(name)](conf.key) +* [conf.key(name, value)](conf.key) +* [conf.folder()](conf.folder) + +### RATOLÍ +* [mouse.pos()](mouse.pos) +* [mouse.wheel()](mouse.wheel) +* [mouse.down(button)](mouse.down) +* [mouse.press(button)](mouse.press) + +### TECLAT +* [key.down(key)](key.down) +* [key.press()](key.press) +* [key.press(key)](key.press) +* [key.any()](key.any) + +### GAMEPAD +* [pad.down(button)](pad.down) +* [pad.press()](pad.press) +* [pad.press(button)](pad.press)