Hello Lövers,
Recently I have been working on a platformer-like puzzle game that turns the normal rules almost literally on their heads. Instead of there being a fixed gravity each platform has its own gravity, with different strengths and ranges.
Currently it is in a very early alpha with only the base of the physics engine, render engine, and one level.
Controls can be found/ rebound in options, although ESC is hard coded to close the game or go to title
This is how the first (and only) level looks:
Sorry non canvas users but I couldn't avoid using canvases when rendering the textures
Gravitate - Orbital gravity platformer
Gravitate - Orbital gravity platformer
- Attachments
-
- Gravitate.love
- V0.04
- (1.8 MiB) Downloaded 388 times
-
- Gravitate.love
- V0.03
- (1.75 MiB) Downloaded 348 times
Last edited by mickeyjm on Sun Jul 28, 2013 12:16 pm, edited 4 times in total.
Your screen is very zoomed in...
- SneakySnake
- Citizen
- Posts: 94
- Joined: Fri May 31, 2013 2:01 pm
- Contact:
Re: Gravitate - Orbital gravity platformer
The game errors with LuaJit, because LuaJit doesn't support the implicit vararg syntax from Lua <= 5.0.
Here is a patch converting it to the new vararg syntax:
Here is a patch converting it to the new vararg syntax:
Code: Select all
diff --git a/phyzHook.lua b/phyzHook.lua
index e93d813..0d74a79 100644
--- a/phyzHook.lua
+++ b/phyzHook.lua
@@ -4,6 +4,7 @@ local phy = {objects = {}}
--Very useful and small function to turn multiple return values into a table
function pack(...)
+ local arg = {...}
return arg
end
@@ -21,6 +22,7 @@ function phyzhook.newWorld(sc)
end
--===========================================================================================================New Polygon
function phy:newPolygon(x,y,...)
+ local arg = {...}
local typ = arg[#arg-2]
local vx,vy = 0,0
local lowx,lowy = nil,nil
Re: Gravitate - Orbital gravity platformer
I assume that this patch is applied through github, correct?SneakySnake wrote:The game errors with LuaJit, because LuaJit doesn't support the implicit vararg syntax from Lua <= 5.0.
Here is a patch converting it to the new vararg syntax:Code: Select all
diff --git a/phyzHook.lua b/phyzHook.lua index e93d813..0d74a79 100644 --- a/phyzHook.lua +++ b/phyzHook.lua @@ -4,6 +4,7 @@ local phy = {objects = {}} --Very useful and small function to turn multiple return values into a table function pack(...) + local arg = {...} return arg end @@ -21,6 +22,7 @@ function phyzhook.newWorld(sc) end --===========================================================================================================New Polygon function phy:newPolygon(x,y,...) + local arg = {...} local typ = arg[#arg-2] local vx,vy = 0,0 local lowx,lowy = nil,nil
It's just that I'm currently not using github and just have the files stored on my computer. Would I be right in thinking that the patch is an automatic way of converting ... as an argument to work properly by doing arg = {...} or am I missing something?
Your screen is very zoomed in...
- SneakySnake
- Citizen
- Posts: 94
- Joined: Fri May 31, 2013 2:01 pm
- Contact:
Re: Gravitate - Orbital gravity platformer
I generated the patch using git diff, but it's a standard diff file.mickeyjm wrote:I assume that this patch is applied through github, correct?
It's just that I'm currently not using github and just have the files stored on my computer. Would I be right in thinking that the patch is an automatic way of converting ... as an argument to work properly by doing arg = {...} or am I missing something?
You can apply it either with a patching utility, or manually.
In this case, you just have to insert the lines that begin with a + sign.
Re: Gravitate - Orbital gravity platformer
Right I have a new update to release now with all of these new features:
+Title screen
+Objective point (portal)
+Display screens
+Test level in file form
*Updated, fixed and implemented level loader
*Fixed render engine
Check OP for updated download
+Title screen
+Objective point (portal)
+Display screens
+Test level in file form
*Updated, fixed and implemented level loader
*Fixed render engine
Check OP for updated download
Your screen is very zoomed in...
Re: Gravitate - Orbital gravity platformer
Instant Lua crash:
Code: Select all
Process: love [16660]
Path: /Users/qaisjp/Apps/love.app/Contents/MacOS/love
Identifier: org.love2d.love
Version: 0.8.0 (???)
Code Type: X86-64 (Native)
Parent Process: launchd [6815]
Date/Time: 2013-07-22 18:32:50.032 +0100
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6
Interval Since Last Report: 403891 sec
Crashes Since Last Report: 5
Per-App Interval Since Last Report: 21718 sec
Per-App Crashes Since Last Report: 3
Anonymous UUID: 265D0A08-9771-45AE-AE52-EF481B32FF6A
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Application Specific Information:
abort() called
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 libSystem.B.dylib 0x00007fff8069f0b6 __kill + 10
1 libSystem.B.dylib 0x00007fff8073f9f6 abort + 83
2 libstdc++.6.dylib 0x00007fff8085e5d2 __tcf_0 + 0
3 libobjc.A.dylib 0x00007fff81fa7b4d _objc_terminate + 120
4 libstdc++.6.dylib 0x00007fff8085cae1 __cxxabiv1::__terminate(void (*)()) + 11
5 libstdc++.6.dylib 0x00007fff8085cb16 __cxxabiv1::__unexpected(void (*)()) + 0
6 libstdc++.6.dylib 0x00007fff8085cbfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
7 org.love2d.love 0x0000000100072dfb 0x100000000 + 470523
8 org.love2d.love 0x000000010006cf55 0x100000000 + 446293
9 org.love2d.love 0x000000010006c7fb 0x100000000 + 444411
10 org.love2d.love 0x00000001000543a7 0x100000000 + 344999
11 org.lua.Lua 0x00000001006f5d6e luaD_precall + 1147
12 org.lua.Lua 0x0000000100704fdc luaV_execute + 4876
13 org.lua.Lua 0x00000001006f5f63 luaD_call + 95
14 org.lua.Lua 0x00000001006f5625 luaD_rawrunprotected + 85
15 org.lua.Lua 0x00000001006f61e5 luaD_pcall + 74
16 org.lua.Lua 0x00000001006ef019 lua_pcall + 99
17 org.lua.Lua 0x00000001006f1a2e luaB_xpcall + 68
18 org.lua.Lua 0x00000001006f5d6e luaD_precall + 1147
19 org.lua.Lua 0x0000000100704fdc luaV_execute + 4876
20 org.lua.Lua 0x00000001006f5f63 luaD_call + 95
21 org.lua.Lua 0x00000001006eef9a lua_call + 38
22 org.love2d.love 0x0000000100002293 0x100000000 + 8851
23 org.love2d.love 0x0000000100058716 0x100000000 + 362262
24 com.apple.Foundation 0x00007fff85f76ad5 _nsnote_callback + 167
25 com.apple.CoreFoundation 0x00007fff82f7efd0 __CFXNotificationPost + 1008
26 com.apple.CoreFoundation 0x00007fff82f6b548 _CFXNotificationPostNotification + 200
27 com.apple.Foundation 0x00007fff85f6da36 -[NSNotificationCenter postNotificationName:object:userInfo:] + 101
28 com.apple.AppKit 0x00007fff87b4a44a -[NSApplication _postDidFinishNotification] + 100
29 com.apple.AppKit 0x00007fff87b4a37f -[NSApplication _sendFinishLaunchingNotification] + 66
30 com.apple.AppKit 0x00007fff87d48ccc -[NSApplication(NSAppleEventHandling) _handleAEOpenDocumentsForURLs:] + 883
31 com.apple.AppKit 0x00007fff87c15065 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 217
32 com.apple.Foundation 0x00007fff85fa50d6 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 360
33 com.apple.Foundation 0x00007fff85fa4f06 _NSAppleEventManagerGenericHandler + 114
34 com.apple.AE 0x00007fff8a38332b aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
35 com.apple.AE 0x00007fff8a383224 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
36 com.apple.AE 0x00007fff8a38312b aeProcessAppleEvent + 210
37 com.apple.HIToolbox 0x00007fff87632619 AEProcessAppleEvent + 48
38 com.apple.AppKit 0x00007fff87b1a095 _DPSNextEvent + 1191
39 com.apple.AppKit 0x00007fff87b19801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
40 com.apple.AppKit 0x00007fff87adf68f -[NSApplication run] + 395
41 org.love2d.love 0x0000000100058eb3 0x100000000 + 364211
42 org.love2d.love 0x0000000100001f74 0x100000000 + 8052
Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x00007fff80669c0a kevent + 10
1 libSystem.B.dylib 0x00007fff8066badd _dispatch_mgr_invoke + 154
2 libSystem.B.dylib 0x00007fff8066b7b4 _dispatch_queue_invoke + 185
3 libSystem.B.dylib 0x00007fff8066b2de _dispatch_worker_thread2 + 252
4 libSystem.B.dylib 0x00007fff8066ac08 _pthread_wqthread + 353
5 libSystem.B.dylib 0x00007fff8066aaa5 start_wqthread + 13
Thread 2:
0 libSystem.B.dylib 0x00007fff8066aa2a __workq_kernreturn + 10
1 libSystem.B.dylib 0x00007fff8066ae3c _pthread_wqthread + 917
2 libSystem.B.dylib 0x00007fff8066aaa5 start_wqthread + 13
Thread 3:
0 libSystem.B.dylib 0x00007fff8066aa2a __workq_kernreturn + 10
1 libSystem.B.dylib 0x00007fff8066ae3c _pthread_wqthread + 917
2 libSystem.B.dylib 0x00007fff8066aaa5 start_wqthread + 13
Thread 4:
0 libSystem.B.dylib 0x00007fff8068ba6a __semwait_signal + 10
1 libSystem.B.dylib 0x00007fff8068b8f9 nanosleep + 148
2 SDL 0x00000001006b1aa6 SDL_Delay + 92
3 SDL 0x00000001006b1b1f SDL_Delay + 213
4 SDL 0x00000001006a631a SDL_Linked_Version + 242
5 SDL 0x00000001006b1967 SDL_SemPost + 209
6 libSystem.B.dylib 0x00007fff80689fd6 _pthread_start + 331
7 libSystem.B.dylib 0x00007fff80689e89 thread_start + 13
Thread 5:
0 libSystem.B.dylib 0x00007fff80650dda semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x00007fff8068f772 _pthread_cond_wait + 1015
2 com.apple.audio.CoreAudio 0x00007fff8496268c CAGuard::WaitFor(unsigned long long) + 168
3 com.apple.audio.CoreAudio 0x00007fff84964c1b CAGuard::WaitUntil(unsigned long long) + 185
4 com.apple.audio.CoreAudio 0x00007fff84962d85 HP_IOThread::WorkLoop() + 1369
5 com.apple.audio.CoreAudio 0x00007fff84962827 HP_IOThread::ThreadEntry(HP_IOThread*) + 9
6 com.apple.audio.CoreAudio 0x00007fff84962755 CAPThread::Entry(CAPThread*) + 125
7 libSystem.B.dylib 0x00007fff80689fd6 _pthread_start + 331
8 libSystem.B.dylib 0x00007fff80689e89 thread_start + 13
Thread 6:
0 libSystem.B.dylib 0x00007fff8068ba6a __semwait_signal + 10
1 libSystem.B.dylib 0x00007fff8068b8f9 nanosleep + 148
2 SDL 0x00000001006b1aa6 SDL_Delay + 92
3 org.love2d.love 0x000000010001026e 0x100000000 + 66158
4 org.love2d.love 0x0000000100060c95 0x100000000 + 396437
5 SDL 0x00000001006a631a SDL_Linked_Version + 242
6 SDL 0x00000001006b1967 SDL_SemPost + 209
7 libSystem.B.dylib 0x00007fff80689fd6 _pthread_start + 331
8 libSystem.B.dylib 0x00007fff80689e89 thread_start + 13
Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x00007fff701322f8 rcx: 0x00007fff5fbfe2c8 rdx: 0x0000000000000000
rdi: 0x0000000000004114 rsi: 0x0000000000000006 rbp: 0x00007fff5fbfe2e0 rsp: 0x00007fff5fbfe2c8
r8: 0x00007fff70135a60 r9: 0x0000000100989d20 r10: 0x00007fff8069b0fa r11: 0x0000000000200206
r12: 0x00000001009a9d58 r13: 0x0000000100937780 r14: 0x00000001000d17ef r15: 0x00007fff5fbfe4e0
rip: 0x00007fff8069f0b6 rfl: 0x0000000000200206 cr2: 0x00000001000c4750
Binary Images:
0x100000000 - 0x10010afff +org.love2d.love 0.8.0 (???) <55884D60-FF21-38B1-B1AF-A29D0FF7D2AA> /Users/qaisjp/Apps/love.app/Contents/MacOS/love
0x100136000 - 0x1001f4fe7 +com.yourcompany.IL 1.0 (1) <252183F9-B853-3F05-802E-DAE8F7D2C690> /Users/qaisjp/Apps/love.app/Contents/Frameworks/IL.framework/Versions/A/IL
0x1002bd000 - 0x100584fff +org.xiph.vorbis 1.2.3 (1.2.3) <9DA8A1B1-9C55-34CF-B885-F373BA862C81> /Users/qaisjp/Apps/love.app/Contents/Frameworks/Vorbis.framework/Versions/A/Vorbis
0x1005bd000 - 0x1005e5fff com.apple.audio.OpenAL 1.4 (1.4) <B38DE645-AEF4-D6DC-A1AB-E3D0D98591E3> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x1005f3000 - 0x100677ff7 +org.freetype.FreeType 2.4.3 (243) <CA9CDEEB-E0F5-3B5C-A6E0-0BBB23576740> /Users/qaisjp/Apps/love.app/Contents/Frameworks/FreeType.framework/Versions/A/FreeType
0x100683000 - 0x1006dafff +SDL 1.2.14 (1.2.14) <C726704D-C3D9-37D1-800E-9D92D9870EAE> /Users/qaisjp/Apps/love.app/Contents/Frameworks/SDL.framework/Versions/A/SDL
0x1006ed000 - 0x10070fff7 +org.lua.Lua 1.0 (1) <110B6824-6041-328F-8559-AEC2997F911C> /Users/qaisjp/Apps/love.app/Contents/Frameworks/Lua.framework/Versions/A/Lua
0x100719000 - 0x10071cfff +org.xiph.ogg 1.1.4 (1.1.4) <04D2EFA2-8B0C-3CD4-9400-9AD518AA208A> /Users/qaisjp/Apps/love.app/Contents/Frameworks/Ogg.framework/Versions/A/Ogg
0x10071f000 - 0x10073eff7 +org.icculus.physfs 1.0 (1) <545A393F-CE8F-3FA3-87FF-C288A699128E> /Users/qaisjp/Apps/love.app/Contents/Frameworks/physfs.framework/Versions/A/physfs
0x100748000 - 0x100787ff7 +net.sourceforge.libmodplug 1.0 (1) <AF1BB950-8E55-3D7A-89BC-44D24217A325> /Users/qaisjp/Apps/love.app/Contents/Frameworks/libmodplug.framework/Versions/A/libmodplug
0x100815000 - 0x10085bfe7 +mpg123 30.6.0 (compatibility 30.0.0) <BECBE914-3AFF-3F25-AFCF-8513542E819E> /Users/qaisjp/Apps/love.app/Contents/Frameworks/mpg123.framework/Versions/A/mpg123
0x100875000 - 0x100875ff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
0x10278c000 - 0x102790fff com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
0x102795000 - 0x10279bff7 com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x114a00000 - 0x114acbfef com.apple.audio.units.Components 1.6.5 (1.6.5) <7786F079-E0CE-39BC-0CE9-EAE1097AF851> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x1150e6000 - 0x115279fe7 GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x1152aa000 - 0x1156cdfef libclh.dylib 3.1.1 C (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
0x115751000 - 0x115777fff GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0x200000000 - 0x200787fe7 com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
0x7fff5fc00000 - 0x7fff5fc3be0f dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
0x7fff80172000 - 0x7fff8019afff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8019b000 - 0x7fff8019cff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff801a9000 - 0x7fff801ceff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff802e0000 - 0x7fff80301fe7 libPng.dylib ??? (???) <14F055F9-D7B2-27B2-E2CF-F0A222BFF14D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff80302000 - 0x7fff8030ffe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x7fff80578000 - 0x7fff805d8fe7 com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff80650000 - 0x7fff80811fef libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
0x7fff80812000 - 0x7fff8088ffef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
0x7fff8095d000 - 0x7fff8095dff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8095e000 - 0x7fff809eafef SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff80bcb000 - 0x7fff80bcefff com.apple.help 1.3.2 (41.1) <BD1B0A22-1CB8-263E-FF85-5BBFDE3660B9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff80ca3000 - 0x7fff80e62fff com.apple.ImageIO.framework 3.0.6 (3.0.6) <2C39859A-043D-0EB0-D412-EC2B5714B869> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff81f9a000 - 0x7fff82050ff7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
0x7fff8205e000 - 0x7fff820eefff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff8213d000 - 0x7fff821d7fff com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff82b6c000 - 0x7fff82c29fff com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff82c2a000 - 0x7fff82ca8ff7 com.apple.CoreText 151.13 (???) <5C6214AD-D683-80A8-86EB-328C99B75322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff82e8c000 - 0x7fff82edfff7 com.apple.HIServices 1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff82ee0000 - 0x7fff82eeffef com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff82f10000 - 0x7fff82f25ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff82f26000 - 0x7fff8309dfe7 com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff830b3000 - 0x7fff830bafff com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff830bb000 - 0x7fff830eeff7 libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x7fff8312d000 - 0x7fff83132ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff83133000 - 0x7fff83171fe7 libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff831c6000 - 0x7fff8344fff7 com.apple.security 6.1.2 (55002) <772E1B13-8271-02F8-B1FE-023592A7AED7> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff83450000 - 0x7fff83450ff7 com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff83451000 - 0x7fff83567ff7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
0x7fff838d7000 - 0x7fff83d1afef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff83d1b000 - 0x7fff83dddfe7 libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff84573000 - 0x7fff84579ff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff8457a000 - 0x7fff845bbfef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8463f000 - 0x7fff84658fff com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff84659000 - 0x7fff846deff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff846df000 - 0x7fff846e5ff7 com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x7fff846e6000 - 0x7fff84786fff com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff84787000 - 0x7fff847ceff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff847cf000 - 0x7fff847f6ff7 libJPEG.dylib ??? (???) <472D4A31-C1F3-57FD-6453-6621C48B95BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff84923000 - 0x7fff84943fff com.apple.DirectoryService.Framework 3.6 (621.15) <9AD2A133-4275-5666-CE69-98FDF9A38B7A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x7fff84944000 - 0x7fff849c3fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff84e5a000 - 0x7fff84e75ff7 com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff84e82000 - 0x7fff84e85ff7 libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff84f84000 - 0x7fff84f88ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
0x7fff84fc7000 - 0x7fff850e6fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
0x7fff850e7000 - 0x7fff850f2ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff850f3000 - 0x7fff851acfff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
0x7fff851ad000 - 0x7fff85281fe7 com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff852be000 - 0x7fff85ac8fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff85ac9000 - 0x7fff85acdff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff85ace000 - 0x7fff85be8fff libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x7fff85c63000 - 0x7fff85ca4fff com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff85ca5000 - 0x7fff85e63fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <0B4ABA92-C1F0-4548-A157-0CFD65561DA5> /usr/lib/libicucore.A.dylib
0x7fff85e64000 - 0x7fff85e78fff libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff85ed7000 - 0x7fff85f1fff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff85f66000 - 0x7fff861e8fff com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff863e8000 - 0x7fff86498fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff86499000 - 0x7fff864effe7 libTIFF.dylib ??? (???) <9BC0CAD5-47F2-9B4F-0C10-D50A7A27F461> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff86502000 - 0x7fff86514fe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
0x7fff86571000 - 0x7fff86c6dff7 com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff86c6e000 - 0x7fff8700bfe7 com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff8701c000 - 0x7fff87071ff7 com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x7fff87072000 - 0x7fff87073ff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff8709c000 - 0x7fff870b3fff com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff87595000 - 0x7fff875b8fff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff875b9000 - 0x7fff875cffef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
0x7fff875d0000 - 0x7fff875d2fff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff875d3000 - 0x7fff875e9fe7 com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff875eb000 - 0x7fff875ebff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff875ec000 - 0x7fff875fdff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
0x7fff875fe000 - 0x7fff878fcfff com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff87a49000 - 0x7fff87a83fff libcups.2.dylib 2.8.0 (compatibility 2.0.0) <4F2A4397-89BD-DEAC-4971-EE838FFA0964> /usr/lib/libcups.2.dylib
0x7fff87a8b000 - 0x7fff87ad5ff7 com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff87ad6000 - 0x7fff884d0ff7 com.apple.AppKit 6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff88673000 - 0x7fff886c2ff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x7fff886c3000 - 0x7fff886c8fff libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff886c9000 - 0x7fff886cbfff libRadiance.dylib ??? (???) <61631C08-60CC-D122-4832-EA59824E0025> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff886cc000 - 0x7fff88801fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff88802000 - 0x7fff8884bfef libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8884c000 - 0x7fff8888fff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff88890000 - 0x7fff88893ff7 com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff88afd000 - 0x7fff88bb2fe7 com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff88bb3000 - 0x7fff88bc2fff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff88c07000 - 0x7fff88c07ff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff88c12000 - 0x7fff88f46fef com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff88f47000 - 0x7fff8902cfef com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff891d4000 - 0x7fff891daff7 IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff8921e000 - 0x7fff8923ffff libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
0x7fff89240000 - 0x7fff89241fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
0x7fff89a04000 - 0x7fff89a18ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff89ae2000 - 0x7fff89ba3fef com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff89e8a000 - 0x7fff89ebbfff libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff89ebc000 - 0x7fff89ffafff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff89ffb000 - 0x7fff89ffbff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8a380000 - 0x7fff8a3bbfff com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff8a3bc000 - 0x7fff8a499fff com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8a50c000 - 0x7fff8a50cff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8a53f000 - 0x7fff8a58bfff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
0x7fff8a58c000 - 0x7fff8a58cff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff8a5ec000 - 0x7fff8a5faff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
0x7fff8a5fb000 - 0x7fff8a665fe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8a6a5000 - 0x7fff8a6d0ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
0x7fff8a7be000 - 0x7fff8a7c3fff libGIF.dylib ??? (???) <5B2AF093-1E28-F0CF-2C13-BA9AB4E2E177> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
Model: MacBookPro5,5, BootROM MBP55.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.47f2
Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: ST9250315ASG, 232.89 GB
Serial ATA Device: HL-DT-ST DVDRW GS23N
USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000 / 2
USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000 / 2
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0237, 0x04600000 / 3
USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000 / 2
USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000 / 2
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000 / 4
Lua is not an acronym.
Re: Gravitate - Orbital gravity platformer
Given it didn't go to the BSoL I don't know how to go about fixing this, all I can think is it could be to do with hardware support such as canvases, which this game uses.
Your screen is very zoomed in...
- DaedalusYoung
- Party member
- Posts: 413
- Joined: Sun Jul 14, 2013 8:04 pm
Re: Gravitate - Orbital gravity platformer
Unsupported features don't trigger a crash though, they still go to a blue screen. That probably is what's happening though, as it says in the report:
"Application Specific Information:
abort() called"
"Application Specific Information:
abort() called"
Re: Gravitate - Orbital gravity platformer
I'm wondering if the love.app is modded because I know there was a software patch for canvases that bypassed the unsupported error message, opening the door to such errors
Your screen is very zoomed in...
Re: Gravitate - Orbital gravity platformer
I've just finished the latest update this one includes:
+Fullscreen w/ Letterboxing to stop streching
+First proper level (rather than a test level)
+Options menu
+Bindable Keys
+Changeable settings
+Credits (Joke credits really as I am the only one working on the project)
*Displays can "read" controls ($KEY_KEYNAME e.g. $KEY_JUMP > UP)
*Fix for wormholes not being centered when rotating
Find it in OP
+Fullscreen w/ Letterboxing to stop streching
+First proper level (rather than a test level)
+Options menu
+Bindable Keys
+Changeable settings
+Credits (Joke credits really as I am the only one working on the project)
*Displays can "read" controls ($KEY_KEYNAME e.g. $KEY_JUMP > UP)
*Fix for wormholes not being centered when rotating
Find it in OP
Your screen is very zoomed in...
Who is online
Users browsing this forum: Ahrefs [Bot] and 4 guests