Search found 10 matches
- Wed Oct 17, 2018 8:39 pm
- Forum: Support and Development
- Topic: Mousepressed not working?
- Replies: 27
- Views: 18634
Re: Mousepressed not working?
In your main.lua you have "love.mouspressed" it should be "love.mousepressed" you were missing an ("e").
- Thu May 03, 2018 1:36 pm
- Forum: General
- Topic: Need advice on building React like framework for love2d
- Replies: 5
- Views: 5154
Re: Need advice on building React like framework for love2d
Thanks for the reply but i have already made OOP GUI framework https://github.com/mastermarkus/simplify and that's why i made this post in the first place, i would rather create framework that prefers composition over inheritance something similar to "ReactJS" framework. In lua there's ver...
- Wed May 02, 2018 6:46 pm
- Forum: General
- Topic: Need advice on building React like framework for love2d
- Replies: 5
- Views: 5154
Need advice on building React like framework for love2d
So for a while i have been searching for customizeable GUI libraries/frameworks but haven't found any that were consistent or that i liked. I want to be able to build every GUI element that i could imagine, design every part of it, add custom animations and events. I found this Javascript GUI/View l...
- Mon Jul 03, 2017 5:42 pm
- Forum: Libraries and Tools
- Topic: Simplify - simple Event-driven GUI library
- Replies: 5
- Views: 5800
Re: Simplify - simple Event-driven GUI library
I now added detailed Documentation for all the available Gui elements.
- Sun Jul 02, 2017 1:57 pm
- Forum: Libraries and Tools
- Topic: Simplify - simple Event-driven GUI library
- Replies: 5
- Views: 5800
Re: Simplify - simple Event-driven GUI library
Not too shabby, athough I do want to point out one thing... In lines 99-106 of 'Simplify.lua' you overwrite the Love callbacks... While not too much of an issue for a personal project, doing so in a library you're releasing to the public is another story. That said, what you should do is either doc...
- Fri Jun 30, 2017 5:13 pm
- Forum: Libraries and Tools
- Topic: Simplify - simple Event-driven GUI library
- Replies: 5
- Views: 5800
Simplify - simple Event-driven GUI library
Repository: https://github.com/mastermarkus/simplify Documantation: https://github.com/mastermarkus/simplify/wiki Simplify is a simple Event-driven GUI library for Löve2D. With this library you can simply create GUI elements and listen for mouse and keyboard input. This library also support's ZIndex...
- Tue Jun 27, 2017 5:18 pm
- Forum: Support and Development
- Topic: Tiled to Love2D Tutorial?
- Replies: 3
- Views: 7774
Re: Tiled to Love2D Tutorial?
Check out youtube tutoriols on Love2d Tiled, there are plenty of those
- Mon Jun 26, 2017 12:45 pm
- Forum: Support and Development
- Topic: Need help going backwards in Folder Structure
- Replies: 5
- Views: 5349
Re: Need help going backwards in Folder Structure
Ok thanks for the help guy's.
- Mon Jun 26, 2017 11:53 am
- Forum: Support and Development
- Topic: Need help going backwards in Folder Structure
- Replies: 5
- Views: 5349
Re: Need help going backwards in Folder Structure
Okey, let's say i have folder structure like this root -> luafolder > test.lua As i understand it's impossible to get ParentFolder "luafolder" of test.lua file without specifying the root -> lua folder in the first place? So, if i was making Gui library it would be easier to put all code i...
- Sun Jun 25, 2017 5:54 pm
- Forum: Support and Development
- Topic: Need help going backwards in Folder Structure
- Replies: 5
- Views: 5349
Need help going backwards in Folder Structure
So i'm working on an event driven GUI system, but i got into problem with Folder Structure's My Folder Structure is like This: root -> Libraries -> GUI-library Folder -> Modules -> lua files root = game root folder Libraries = where i hold my libraries One of my lua files is in Modules folder how ca...