User contributions
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 22:58, 3 January 2011 (diff | hist) . . (+53) . . love.filesystem.isFile (included link to other languages)
- 22:57, 3 January 2011 (diff | hist) . . (+525) . . N love.filesystem.isDirectory (Português) (versão inicial)
- 22:55, 3 January 2011 (diff | hist) . . (+58) . . m love.filesystem.isDirectory (included link to other languages)
- 22:52, 3 January 2011 (diff | hist) . . (-527) . . m love.filesystem (Português) (atualização na lista de funções)
- 22:51, 3 January 2011 (diff | hist) . . (+517) . . N love.filesystem.init (Português) (versão inicial)
- 22:49, 3 January 2011 (diff | hist) . . (+52) . . m love.filesystem.init (included link to other languages)
- 22:48, 3 January 2011 (diff | hist) . . (+452) . . N love.filesystem.getWorkingDirectory (Português) (versão inicial)
- 22:46, 3 January 2011 (diff | hist) . . (+1) . . m love.filesystem.getWorkingDirectory (included link to other languages)
- 22:45, 3 January 2011 (diff | hist) . . (+65) . . m love.filesystem.getWorkingDirectory (included link to other languages)
- 22:44, 3 January 2011 (diff | hist) . . (+483) . . N love.filesystem.getUserDirectory (Português) (versão inicial)
- 22:42, 3 January 2011 (diff | hist) . . (+626) . . N love.filesystem.getSaveDirectory (Português) (versão inicial)
- 22:38, 3 January 2011 (diff | hist) . . (+570) . . N love.filesystem.getAppdataDirectory (Português) (Created page with 'Retorna o diretório de dados da aplicação (pode ser o mesmo de getUserDirectory). == Função == === Sinopse === <source lang="lua"> caminho = love.filesystem.getAppdataDirect…')
- 22:36, 3 January 2011 (diff | hist) . . (+551) . . N love.filesystem.exists (Português) (Created page with 'Verifica se um arquivo ou diretório existe. == Função == === Sinopse === <source lang="lua"> e = love.filesystem.exists( arquivo ) </source> === Argumentos === {{param|string|…')
- 22:33, 3 January 2011 (diff | hist) . . (-137) . . m love.filesystem (Português)
- 22:32, 3 January 2011 (diff | hist) . . (+1,465) . . N love.filesystem.enumerate (Português) (Created page with 'Retorna todos os arquivos e subdiretórios em um diretório. Note que esse diretório é relativo à pasta/arquivo que o LÖVE começou a executar. Caminhos absolutos não irão…')
- 22:23, 3 January 2011 (diff | hist) . . (+15) . . FileMode (Português)
- 22:21, 3 January 2011 (diff | hist) . . (-11) . . m Config Files (Português)
- 22:18, 3 January 2011 (diff | hist) . . (-23) . . m (File):open (Português)
- 13:43, 3 January 2011 (diff | hist) . . (-44) . . love.filesystem (Português)
- 13:42, 3 January 2011 (diff | hist) . . (+39) . . N love.conf (Português) (Redirected page to Config Files (Português)) (current)
- 13:40, 3 January 2011 (diff | hist) . . (+13) . . m Main Page (Português)
- 13:39, 3 January 2011 (diff | hist) . . (-1) . . m Config Files (Português)
- 13:39, 3 January 2011 (diff | hist) . . (+3,005) . . N Config Files (Português) (Created page with '== Introdução == Se um arquivo chamado <code>conf.lua</code> existe na pasta de seu jogo (ou .love-file), ele é executado ''antes'' dos módulos LÖVE serem carregados. Você…')
- 13:20, 3 January 2011 (diff | hist) . . (+45) . . Config Files
- 13:16, 3 January 2011 (diff | hist) . . (-617) . . m File (Português)
- 13:16, 3 January 2011 (diff | hist) . . (+23) . . m (File):open
- 13:15, 3 January 2011 (diff | hist) . . (+26) . . m FileMode
- 13:15, 3 January 2011 (diff | hist) . . (+36) . . m (File):open (Português)
- 13:14, 3 January 2011 (diff | hist) . . (+394) . . N FileMode (Português) (Created page with 'Os diferentes modos que um arquivo pode ser aberto. == Constantes == ;r: Abre um arquivo para leitura. ;w: Abre um arquivo para escrita. ;a: Abre um arquivo para acréscimo. == V…')
- 13:12, 3 January 2011 (diff | hist) . . (+419) . . N (File):write (Português) (Created page with 'Escreve dados no arquivo. == Função == === Sinopse === <source lang="lua"> sucesso = File:write( dado ) </source> === Argumentos === {{param|string|dado|Dados a serem escritos.…')
- 13:10, 3 January 2011 (diff | hist) . . (+376) . . N (File):tell (Português) (Created page with 'Retorna a posição atual no arquivo. == Função == === Sinopse === <source lang="lua"> pos = File:tell( ) </source> === Argumentos === Nenhum. === Retornos === {{param|number|p…')
- 13:08, 3 January 2011 (diff | hist) . . (+432) . . N (File):seek (Português) (Created page with 'Vai para uma posição no arquivo. == Função == === Sinopse === <source lang="lua"> sucesso = File:seek( pos ) </source> === Argumentos === {{param|number|pos|A posição a ati…')
- 13:05, 3 January 2011 (diff | hist) . . (+467) . . N (File):read (Português) (Created page with 'Lê uma quantidade de bytes de um arquivo. == Função == === Sinopse === <source lang="lua"> conteudo = File:read( bytes ) </source> === Argumentos === {{param|number|bytes|A qu…')
- 13:03, 3 January 2011 (diff | hist) . . (+764) . . N (File):open (Português) (Created page with 'Abre um arquivo para escrita, leitura ou acréscimo. == Função == === Sinopse === <source lang="lua"> ok = File:open( modo ) </source> === Argumentos === {{param|FileMode|modo|…')
- 12:57, 3 January 2011 (diff | hist) . . (+422) . . N (File):lines (Português) (Created page with 'Iterage sobre todas as linhas do arquivo. == Função == === Sinopse === <source lang="lua"> iterator = File:lines( ) </source> === Argumentos === Nenhum. === Retornos === {{para…')
- 12:54, 3 January 2011 (diff | hist) . . (+1) . . m (File):getSize (Português)
- 12:54, 3 January 2011 (diff | hist) . . (+367) . . N (File):getSize (Português) (Created page with 'Retorna o tamanho do arquivo. == Função == === Sinopse === <source lang="lua"> tam = File:getSize( ) </source> === Argumentos === Nenhum. === Retornos === {{param|number|tab|O …')
- 12:52, 3 January 2011 (diff | hist) . . (+407) . . N (File):eof (Português) (Created page with 'Indica se o final do arquivo foi alcançado. == Função == === Sinopse === <source lang="lua"> eof = File:eof( ) </source> === Argumentos === Nenhum. === Retorno === {{param|boo…')
- 12:50, 3 January 2011 (diff | hist) . . (+361) . . N (File):close (Português) (Created page with 'Fecha um arquivo. == Função == === Sinopse === <source lang="lua"> successo = File:close( ) </source> === Argumentos === Nenhum. === Retornos === {{param|boolean|successo|Se o …')
- 12:46, 3 January 2011 (diff | hist) . . (+712) . . N love.filesystem.newFile (Português) (Created page with 'Cria um novo objeto Arquivo. É necessário que seja aberto antes que seja acessado. == Função == === Sinopse === <source lang="lua"> arq = love.filesystem.newFile( nomeArq ) …')
- 12:41, 3 January 2011 (diff | hist) . . (+1,349) . . N File (Português) (Created page with 'Representa um arquivo em um sistema de arquivos. == Construtores == {{#ask: Category:Functions Constructs::File (Português) | headers=hide | default=None. | ?Description…')
- 12:37, 3 January 2011 (diff | hist) . . (+3,504) . . N love.filesystem (Português) (Created page with 'Provê uma interface para o sistema de arquivos do usuário. Este módulo provê acesso aos Arquivos de dois e somente dois lugares: * A pasta raiz do .love-file. (Alternativa…')
- 10:28, 3 January 2011 (diff | hist) . . (-45) . . m love (Português)
- 10:26, 3 January 2011 (diff | hist) . . (-2) . . m love.event.wait (Português)
- 10:26, 3 January 2011 (diff | hist) . . (+652) . . N love.event.wait (Português) (Created page with 'Como <code>love.event.poll (Português)()</code>, mas bloqueia a execução até existir um evento na fila. == Função == === Sinopse === <source lang="lua"> e, a, b, c = lo…')
- 10:23, 3 January 2011 (diff | hist) . . (+732) . . N love.event.push (Português) (Created page with 'Adiciona um evento na fila de eventos. == Função == === Sinopse === <source lang="lua"> love.event.push( e, a, b, c ) </source> === Argumentos === {{param|Event|e|Tipo do event…')
- 10:20, 3 January 2011 (diff | hist) . . (0) . . m love.event.pump (Português)
- 10:20, 3 January 2011 (diff | hist) . . (+622) . . N love.event.pump (Português) (Created page with 'Retira eventos da fila de eventos. Esta é uma função de baixo nível e normalmente não é chamada explicitamente, mas implicitamente por <code>[[love.event.poll (Português)]…')
- 10:14, 3 January 2011 (diff | hist) . . (+653) . . N love.event.poll (Português) (Created page with 'Obtém um iterador para as mensagens na fila de eventos. == Função == === Sinopse === <source lang="lua"> i = love.event.poll( ) </source> === Argumentos === Nenhum. === Retorn…')
- 10:10, 3 January 2011 (diff | hist) . . (+429) . . N Event (Português) (Created page with 'Argumentos para love.event.push() e similares. == Constantes == ;jp: Joystick pressionado ;jr: Joystick liberado ;kp: Tecla pressionada ;kr: Tecla liberada ;mp: Mouse pressionado…')
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)