Page 1 of 1

Can't get Goo to work.

Posted: Mon Jul 01, 2013 12:36 am
by thyrgle
Hello, I am trying to get the Goo GUI extension to Love2d to work. According to this forum poast: http://love2d.org/forums/viewtopic.php?f=5&t=1523 I should be able to
love /path/to/Goo-master
because it has a main.lua.

This doesn't work though. I get a bunch of errors:

Code: Select all

Error: goo/goo.lua:316: module 'goo/objects/bigbutton.lua' not found:
	no file "goo/objects/bigbutton/lua.lua" in LOVE game directories.

	no extension "goo/objects/bigbutton.lua" in LOVE paths.

	no field package.preload['goo/objects/bigbutton.lua']
	no file './goo/objects/bigbutton/lua.lua'
	no file '/usr/local/share/lua/5.1/goo/objects/bigbutton/lua.lua'
	no file '/usr/local/share/lua/5.1/goo/objects/bigbutton/lua/init.lua'
	no file '/usr/local/lib/lua/5.1/goo/objects/bigbutton/lua.lua'
	no file '/usr/local/lib/lua/5.1/goo/objects/bigbutton/lua/init.lua'
	no file '/usr/share/lua/5.1/goo/objects/bigbutton/lua.lua'
	no file '/usr/share/lua/5.1/goo/objects/bigbutton/lua/init.lua'
	no file './goo/objects/bigbutton/lua.so'
	no file '/usr/local/lib/lua/5.1/goo/objects/bigbutton/lua.so'
	no file '/usr/lib/x86_64-linux-gnu/lua/5.1/goo/objects/bigbutton/lua.so'
	no file '/usr/lib/lua/5.1/goo/objects/bigbutton/lua.so'
	no file '/usr/local/lib/lua/5.1/loadall.so'
	no file './goo/objects/bigbutton.so'
	no file '/usr/local/lib/lua/5.1/goo/objects/bigbutton.so'
	no file '/usr/lib/x86_64-linux-gnu/lua/5.1/goo/objects/bigbutton.so'
	no file '/usr/lib/lua/5.1/goo/objects/bigbutton.so'
	no file '/usr/local/lib/lua/5.1/loadall.so'
stack traceback:
	[C]: in function 'require'
	goo/goo.lua:316: in function 'load'
	main.lua:13: in function 'load'
	[string "boot.lua"]:378: in function <[string "boot.lua"]:373>
	[C]: in function 'xpcall'

Any ideas on how to fix this? I am using Love 0.8.0.

Re: Can't get Goo to work.

Posted: Mon Jul 01, 2013 3:39 am
by markgo
That is a rather old library. I'm not sure if it's compatible with 0.8. Might I suggest you look up "Love Frames" or "Quickie"?

Re: Can't get Goo to work.

Posted: Mon Jul 01, 2013 3:53 am
by thyrgle
Haha, I saw another forum post somewhere saying Goo was a better version of LoveUI. Guess they're both out of date. I'll take a look into those frameworks then. Thanks.