Search found 23 matches

by lex
Wed Dec 09, 2015 4:35 pm
Forum: Support and Development
Topic: mac texteditor emacs
Replies: 4
Views: 2890

Re: mac texteditor emacs

thanks for the answers
I like terminal idk why I 'M more confortable lol
wish emacs could highlight the lua syntax it will be easier
that page doesn't tell exactly what to do unless didnt read all (but i did)
anyone there using emacs and lua highlighted please can you help me !
by lex
Wed Dec 09, 2015 4:27 pm
Forum: Support and Development
Topic: Emacs Minor Mode for LÖVE
Replies: 3
Views: 3447

Re: Emacs Minor Mode for LÖVE

I have same problem ..but the main problem from my end is that can't tell I 'm using Lua.. emacs 22.1.1 I'm on an actual macbook pro can someone help me how to install it https://immerrr.github.io/lua-mode/ at least for emacs to know I'm using it. M-x list-package[no match] I get this answer when I ...
by lex
Wed Dec 09, 2015 6:54 am
Forum: Support and Development
Topic: mac texteditor emacs
Replies: 4
Views: 2890

mac texteditor emacs

hello! I am using a macbook pro and started using the emacs built-in editor all works okay but for some reason the emacs can't tell that I'm using Lua for love.. Not sure how to install the plug-in ? https://immerrr.github.io/lua-mode/ tried to see what package I have and did M-x list-package--comma...
by lex
Tue Jun 16, 2015 5:17 am
Forum: Support and Development
Topic: how does anim8 reads an image?
Replies: 14
Views: 6681

Re: how does anim8 reads an image?

g = anim8.newGrid(64,65, 1024,768, 167,498, 1) land = anim8.newAnimation( g (1,1), 1)<---1-10 ? kikito This is perfectly valid to just display a single image? from the big picture right? and not as animation! I am trying to keep up also I will use Quads+anim8 I think both will give me what I want.....
by lex
Mon Jun 15, 2015 2:32 am
Forum: Support and Development
Topic: how does anim8 reads an image?
Replies: 14
Views: 6681

Re: how does anim8 reads an image?

Quads? interesting..
by lex
Sun Jun 14, 2015 6:48 am
Forum: Support and Development
Topic: how does anim8 reads an image?
Replies: 14
Views: 6681

Re: how does anim8 reads an image?

Yes ..thank you kikito finally I am able to animate the rest of the images.. last question almost all of them are animations BUT what if I want to just display one image (not animation) from the big image? g = anim8.newGrid(64,65, 1024,768, 167,498, 1) land = anim8.newAnimation( g (1,1), 0.1) do I s...
by lex
Fri Jun 12, 2015 5:24 pm
Forum: Support and Development
Topic: how does anim8 reads an image?
Replies: 14
Views: 6681

Re: how does anim8 reads an image?

thank you I am about to read it and work on it the only part that i am not sure how to get its the offset how do you get it and not sure what are tiles I got to search in to it as well XD sorry pretty new at this also is there place online where i can gather with ppl that use love2D to chat and lear...
by lex
Thu Jun 11, 2015 4:51 am
Forum: Support and Development
Topic: how does anim8 reads an image?
Replies: 14
Views: 6681

how does anim8 reads an image?

I saw a tutorial don't remember where? anyways... this I kind of get it. all I do its count the x 32 and the y 32 ! ( 32x32 rectangle) --no clue whats an offset? or border-- -- frame, image, offsets, border g32 = anim8.newGrid(32,32, 1024,768, 3,3, 1) spinning = { anim8.newAnimation(g32('1-8',1), 0....
by lex
Thu Jun 11, 2015 4:27 am
Forum: Support and Development
Topic: gamestate will eat memory or not?
Replies: 9
Views: 4394

Re: gamestate will eat memory or not?

thank all for the answers..
by lex
Thu Apr 23, 2015 2:11 pm
Forum: Support and Development
Topic: gamestate will eat memory or not?
Replies: 9
Views: 4394

Re: gamestate will eat memory or not?

well my goal is not to waster or burn pc memory as for the question i think gamestate its to display one part of the game and hide the other ones (could be wrong) state="game" if state== "game" then game.load() end i am not skillfull enough yet this is so far from what i have lea...