Yesterday, I started using Rescuetime on RC's recommendation.
My productivity instantly increased, since it felt like I had a smug bastard standing behind my back watching my every move. So I was productive 75% of the time between 11AM and 6PM yesterday. Much code was written.I was specifically beginning to work on my biggest project again: Exile. Because Exile needs to be 'finished'.I moved over most of the assets to the newer engine:Not that you can see that there… I'm just showing off my engine's ability for nice lighting. :3Also found a couple of tracks I didn't use in the original Exile, that I'm definitely using now: https://dl.dropboxusercontent.com/u/11942397/unused_track_1.mp3https://dl.dropboxusercontent.com/u/11942397/unused_track_2.mp3https://dl.dropboxusercontent.com/u/11942397/unused_track_4.mp3Not to mention that I have three new enemies with sprites sitting there from my last bit of 'work'. Anyway, on the engine front… I integrated LUA yesterday, and spent two hours last night trying to figure out why my LUA scripts where terminating whenever I called an Engine function…. Turns out I derped by making a RegisterBindings() method, and forgetting to call it. I've set the entire system up in such a way that you don't have to touch the game's main source code in order to add new entities to the game; you simple add two lines to the asset list:# Test entity
SCRIPTEDENTITY 5 ./scripts/test/test_init.lua ./scripts/test/test_destroy.lua ./scripts/test/test_update.lua
# Editor entity.
EENT THING ./editor/eent_thing.png
i'm pretty sure 64D counts as Entertainment as well :P it's not adding to your production at all is it? Honestly all internet time is entertainment, even if you are studying something. Unless it's homework :P Other than that i think this service sounds pretty cool, although i doubt i would ever use it.
come on, show some more than the lighting for once :3 let's see some baddies getting brutally bashed by swords and spells. which reminds me, i'm going to be attempting to make a video of some Terror game play soon, any tips on how to record and edit game play footage into a nice little demonstration video?I use Open Broadcaster Software to record video, and it's been working well for me.
And yeah, I've got to get around to adding the swords and spells back in. The assets are all there, but none of the code is.@firestormx Well, it's the price you pay for using the free software, that's my point in the first place. If you're really surprised that this is the way they're making money, you really need to be more cynical about free websites on the Internet.
@Kilin Bing's just a shittier version of the same thingPersonally I don't care that machines are collecting info on me to advertise because as Toast said, we has ad block!
Also Toast, as I was installing the program it gave me the option to not have my web browsing tracked.Nice, integrating Lua.
Toast: That was exactly my point. :P
If they are selling your data, and you don't want them to do that, you could ask for a paid version or something.@aeron: I was thinking of taking that approach… though I still need to figure out what Lua library function to call. Need to get the docs. :P
EDIT: Well that was simple. Set up the stack and lua_call().