Search found 16 matches

by OdnsRvns
Sat Jan 31, 2015 2:55 pm
Forum: Support and Development
Topic: Createing Endless Texture Background
Replies: 10
Views: 8453

Re: Createing Endless Texture Background

S0lll0s wrote:You can also use a screen-sized quad and set the wrap options to repeat.
How would I go about doing that.
by OdnsRvns
Sat Jan 31, 2015 2:44 am
Forum: Support and Development
Topic: Createing Endless Texture Background
Replies: 10
Views: 8453

Re: Createing Endless Texture Background

Azhukar wrote:Fraction your image into chunks, draw chunks based on intersection with drawn area.
Thanks can you walk me through how this works. I'm a new programmer so this is something I could use in other projects.
by OdnsRvns
Fri Jan 30, 2015 10:43 pm
Forum: Support and Development
Topic: Createing Endless Texture Background
Replies: 10
Views: 8453

Createing Endless Texture Background

Working on a game project mainly for fun/myself. I'm to a problem right now as a new programmer that I'm not sure how to solve. I have a background texture(2048 x 2048) of a star field that moves with the WASD keys. I want to reuse this texture over and over again to create the illusion of movement ...
by OdnsRvns
Mon Sep 15, 2014 2:38 pm
Forum: Support and Development
Topic: Image Buttons Mouse Click
Replies: 4
Views: 3406

Re: Image Buttons Mouse Click

Google Drive for the .love file. I couldn't get it to upload to the forums to big maybe?
.LOVE FILE
by OdnsRvns
Sun Sep 14, 2014 9:33 pm
Forum: Support and Development
Topic: Image Buttons Mouse Click
Replies: 4
Views: 3406

Re: Image Buttons Mouse Click

Thanks for the post!! I'll look into lua OOP. I'm not sure if your code is simpler but I'm sure its probably the correct handle buttons. Tables and Classes are stile a little foggy to me, how to call and use everything in them and all that. I appreciate the code and quick response. local Button = {}...
by OdnsRvns
Sun Sep 14, 2014 7:18 pm
Forum: Support and Development
Topic: Image Buttons Mouse Click
Replies: 4
Views: 3406

Image Buttons Mouse Click

So this is my current bit of code I use to draw a button on the screen, check to see if mouse is over the button, and then check to see if mouse is clicked. It works fine, no complaints. As a rather new programmer I was wondering since I am adding the buttons "Settings" and "Exit"...