Search found 56 matches

by nikneym
Sun Jan 03, 2016 4:47 pm
Forum: LÖVE-Android
Topic: Bug on setColor() & draw() command at android ?
Replies: 6
Views: 47792

Bug on setColor() & draw() command at android ?

Hey guys. I tried to use löve on droid. But i can't see some colors and images. What's that bug ?

Image
Image
by nikneym
Sat Nov 28, 2015 9:20 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1500220

Re: What's everyone working on? (tigsource inspired)

Currently working on my new game (Bullopu) and this is login screen for it.

Image
by nikneym
Mon Jun 03, 2013 12:51 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1500220

Re: What's everyone working on? (tigsource inspired)

I'm working on my new game:

Image
by nikneym
Sun May 12, 2013 1:03 pm
Forum: General
Topic: Where do you live? (Social Experiment)
Replies: 36
Views: 15428

Re: Where do you live? (Social Experiment)

I live in Turkey/Eskişehir.
by nikneym
Mon May 06, 2013 1:59 pm
Forum: General
Topic: How to change current working directory ?
Replies: 2
Views: 2100

How to change current working directory ?

I need change a working directory. How can ı do this ?
by nikneym
Wed Apr 24, 2013 9:30 am
Forum: General
Topic: [Question]Where is the bug?
Replies: 2
Views: 1779

[Question]Where is the bug?

anadosyam="oku.gr"; ac=io.open(anadosyam, "r+"); while true do actir=ac.read(ac, "*a"); if not line then break; end end acilacakdosya=actir; acilacak=io.open(acilacakdosya,"r"); while true do kodlar=acilacak.read(acilacak, "*a"); if not line then br...
by nikneym
Fri Apr 19, 2013 12:38 pm
Forum: General
Topic: [Question]How to build my lua project? (not löve)
Replies: 4
Views: 3347

Re: [Question]How to build my lua project? (not löve)

I would of thought that this might of been a bit complex and involved but a quick look on stackoverflow and I found this answer: http://stackoverflow.com/questions/194520/creating-standalone-lua-executables Which suggested some tools one of which was: http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#srl...
by nikneym
Fri Apr 19, 2013 10:23 am
Forum: General
Topic: [Question]How to build my lua project? (not löve)
Replies: 4
Views: 3347

[Question]How to build my lua project? (not löve)

How can I get the output of a project I did with Lua? (.out & .exe)
by nikneym
Mon Apr 15, 2013 2:47 pm
Forum: General
Topic: [Question]Little Array Problem
Replies: 3
Views: 1872

Re: [Question]Little Array Problem

numberOfElements = #array Note that the above only works if it's an array with consecutive integer indexes starting from 1; it won't count non-integer indexes or indexes less than or equal to 0, and it will stop at the first hole it encounters. E.g: > array = {1, 2, 3} > array[5] = 4 > print(#array...
by nikneym
Mon Apr 15, 2013 2:28 pm
Forum: General
Topic: [Question]Little Array Problem
Replies: 3
Views: 1872

[Question]Little Array Problem

How can I get the number of elements in an array?