[00:00:58] *** ShivanHunter <ShivanHunter!~quassel@2601:742:201:6470:9872:b740:c635:3540> has joined #libgdx
[00:04:57] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has quit IRC (Ping timeout: 244 seconds)
[00:09:49] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has quit IRC (Remote host closed the connection)
[00:12:10] *** Silferein <Silferein!~john@2601:600:9100:1cf0:4d66:60ed:f5a1:58f7> has joined #libgdx
[00:12:22] <Silferein> g'day folks
[00:12:39] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has joined #libgdx
[00:14:34] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has joined #libgdx
[00:16:00] *** Shockah <Shockah!~Shockah@bvy40.neoplus.adsl.tpnet.pl> has quit IRC (Quit: Leaving)
[00:16:53] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[00:17:22] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has quit IRC (Ping timeout: 265 seconds)
[00:20:30] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[00:24:05] *** davebaol <davebaol!~davebaol@93-38-228-85.ip72.fastwebnet.it> has quit IRC (Ping timeout: 252 seconds)
[00:31:57] *** zymo <zymo!48b1d172@gateway/web/freenode/ip.72.177.209.114> has joined #libgdx
[00:32:21] <zymo> i dont understand, some people say to use pixel to meter conversion, others say not to
[00:32:43] <zymo> when i dont use it, i have to apply like a force of a billion to move bodies
[00:38:25] <Xoppa> o.O
[00:38:35] <Xoppa> zymo: blog.xoppa.com/pixels
[00:38:47] <Xoppa> just dont use pixels at all
[00:39:57] <zymo> but mah brayn
[00:46:41] <zymo> then why are people telling me to ditch pixel to meter conversions?
[00:46:51] <zymo> i keep going back and forth
[00:47:26] <myke> the idea is that instead of using a fixed pixel-to-meter you treat it as a simulation
[00:47:29] <Xoppa> you ditch ¨pixels¨. and thus also your ¨pixel¨ to meter conversion
[00:47:51] <myke> size everything in meters or whatever, work out the camera view, and pixels-per-meter will happen as a result, instead of something you explicitly use in the math
[00:48:17] <Xoppa> note that it arent actual pixels
[00:48:31] <Xoppa> just something you made up in your head
[00:48:37] <myke> the only thing that even has to deal with pixels is the camera
[00:51:06] <zymo> ohh
[00:51:22] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Remote host closed the connection)
[00:51:56] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[00:51:57] <zymo> what would you do for getting dimensions of sprites n stuff?
[00:52:21] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Remote host closed the connection)
[00:52:56] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[00:52:59] <Xoppa> sprite.getWidth() and sprite.getHeight()
[00:53:26] *** atrus6 <atrus6!~Thunderbi@72.241.82.247> has joined #libgdx
[00:53:40] <zymo> doesnt that return in pixels though?
[00:54:12] <Xoppa> no, it returns whatever you´ve set it to using sprite.setWidth and sprite.setHeight
[00:55:10] <zymo> doesnt it get it from the raw img file?
[00:55:40] *** Kotcrab <Kotcrab!uid51771@gateway/web/irccloud.com/x-pxyehjrtkhbrhqqt> has quit IRC (Quit: Connection closed for inactivity)
[00:55:53] <Xoppa> no, you set it to whatever you want it to be
[00:56:41] <Xoppa> if you dont set it then it will be the size in texels of the region, which obviously isnt very useful in gameplay, so you should set it to something useful before using it
[00:57:15] <zymo> so you have to hard set it? I've been getting the dimensions directly from the fil
[00:57:16] <zymo> file
[00:57:29] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 265 seconds)
[00:58:31] <Xoppa> how would ¨the file¨ know the size of your object in your game?
[00:59:38] <zymo> .getWidth() gives me the pixel width
[00:59:51] <Xoppa> which pixel?
[01:00:18] <zymo> like if i make a sprite and give it a path to a 20 by 20 png
[01:00:24] <Tomski> Thats not pixels
[01:00:27] <zymo> .getWidth() returns 20
[01:00:35] <Xoppa> a path?
[01:00:44] <Tomski> As Xoppa said, if you dont supply a size, it defaults to the texel size of the region
[01:00:49] <zymo> like in the assets
[01:01:14] <Xoppa> you want to couple your asset size to your game-play? is that what you mean?
[01:01:51] <zymo> no, just saying like if you arent getting the dimensions from the img, how else do you know what to set it to?
[01:02:08] <Xoppa> what does the image represent in your game?
[01:02:21] <zymo> any image, like the player
[01:02:31] <Xoppa> how tall is the player in your game?
[01:02:56] <Xoppa> is it a human? like 1.8 meters?
[01:03:13] <Xoppa> then set it to 1.8 meters in height
[01:03:29] <zymo> 180 pixels
[01:03:34] <Tomski> No
[01:03:36] <Tomski> No pixels
[01:03:38] <Xoppa> pixels?
[01:03:42] <Tomski> pixels have nothing to do with your game
[01:03:48] <Tomski> You're thinking about it backwards
[01:04:05] <zymo> i know but how does the game know what size my 75 by 180 character is
[01:04:16] <Tomski> Rendering is a visual representation of your game, not the other way around
[01:04:26] <Tomski> Your character isnt 75x180
[01:04:29] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[01:04:38] <Tomski> Its whatever size you give it
[01:04:56] <Tomski> If thats a humanoid, 1.8m
[01:05:00] *** Shawneth <Shawneth!6caa9a04@gateway/web/freenode/ip.108.170.154.4> has joined #libgdx
[01:05:09] <Tomski> playerSprite.setHeight(1.8f)
[01:05:49] <myke> zymo: by default you do get a 1 to 1 mapping between texels and pixels, but it doesn't have to be that way and won't as soon as you start changing camera parameters
[01:06:13] <myke> if you use a perspective camera and start zooming out, your sprite will get smaller
[01:06:22] <Shawneth> How do I determine the angle between two vectors? v1.setAngle(v1.angle(v2)) doesn't seem to work
[01:06:52] <Shawneth> always returns 0.0 for me
[01:07:19] <zymo> man it will take a while to convert from pixels haha
[01:07:21] <Xoppa> that method returns an object not a primitive Shawneth
[01:07:30] <zymo> i wish i knew earlier
[01:07:43] <Shawneth> Hmm okay
[01:08:35] <Xoppa> but if you want to know the difference in angles then float diffAngle = v1.angle() - v2.angle(); Shawneth
[01:09:10] <Xoppa> if you want to know the angle relative to another vector then: float angle = v1.angle(v2); Shawneth
[01:09:34] <Shawneth> I'll try that now, thank you Xoppa
[01:10:06] <Xoppa> if you want to know the angle of a point to another point then new Vector2().set(v2).sub(v1).angle(); Shawneth
[01:10:35] <Xoppa> euhm, probably needs a nor() in there
[01:11:04] <Shawneth> Speaking of nor(), can you explain why I need to normalize?
[01:11:10] <Shawneth> What does normalizing do to a vector?
[01:11:49] <Xoppa> a vector does two things: 1) specify a direction and 2) specify a length
[01:12:42] <Xoppa> for getting the angle, you only need the direction, the nor() method sets the length to one (the unit vector) so you are left with only the direction
[01:14:18] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has quit IRC (Ping timeout: 263 seconds)
[01:15:05] <Shawneth> So as long as I'm using a vector for only directional use, I should always chain nor() to it?
[01:15:11] <Xoppa> so: x*x + y*y = 1, most trigenometry methods (like sinus and atan and such) need that
[01:15:41] <Xoppa> yes
[01:16:43] <Xoppa> there is some room for optimizations (because nor() does a square root), but it very unlikely that you will ever notice that, so indeed just use nor() when you only need the direction
[01:21:00] *** kjempff <kjempff!~kvirc@1004ds2-arno.0.fullrate.ninja> has quit IRC (Read error: Connection reset by peer)
[01:21:48] <Shawneth> Xoppa: for whatever reason, the closer my vector2 gets to the target vector2, the angle changes slowly, I will get a pastebin.
[01:24:57] <Xoppa> nothing in that snippet is related to an angle
[01:26:23] <Shawneth> Sorry I just removed it.. But I fixed the issue nonetheless
[01:26:28] <Xoppa> you also might want to take some velocity in consideration
[01:27:22] <Xoppa> ow and ditch the imaginary pixels
[01:28:44] <Shawneth> What do you mean by imaginary pixels?
[01:30:49] <Xoppa> your units (a size of 640 by 480) looks like they are imaginary pixels (it´s very unlikely that your visible field is 640 by 480 meters or something)
[01:31:57] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[01:31:58] <Xoppa> imaginary pixels are non-existing pixels (sometimes called a virtual viewport, virtual pixels, etc.)
[01:32:18] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[01:48:17] *** DenialAdams <DenialAdams!~DenialAda@rnet-51.unh.edu> has quit IRC (Remote host closed the connection)
[01:49:06] *** monomolecular <monomolecular!~monomolec@174-24-157-29.tukw.qwest.net> has quit IRC (Ping timeout: 264 seconds)
[01:56:42] *** zymo <zymo!48b1d172@gateway/web/freenode/ip.72.177.209.114> has quit IRC (Ping timeout: 240 seconds)
[02:06:26] *** Mithrin2 <Mithrin2!~none2@S0106687f74668424.ok.shawcable.net> has joined #libgdx
[02:06:26] *** Mithrin_ <Mithrin_!~none2@S0106687f74668424.ok.shawcable.net> has quit IRC (Read error: Connection reset by peer)
[02:08:47] <Shawneth> Xoppa: All of that information is on the server side, and since the viewport on the client is 640 by 480 I'd always be able to see everything
[02:10:02] <Xoppa> say what? Shawneth, perhaps expand a bit what you mean by that
[02:11:27] *** sohakes <sohakes!~sohakes@186.207.101.225> has quit IRC (Quit: Lost terminal)
[02:13:51] <Shawneth> I have a server side of my game which handles all of the game logic, then I have the client which has a viewport of 640 by 480
[02:14:11] <Shawneth> It's an RTS browser game
[02:14:15] <Shawneth> like little war game
[02:14:35] <Xoppa> 640 by 480 what? meters?
[02:16:04] <Shawneth> pixel units
[02:16:16] <Xoppa> what are pixel units?
[02:16:38] <Xoppa> you mean actual pixels?
[02:16:52] <Shawneth> viewport pixels I guess you can call them
[02:17:06] <Xoppa> like, you are restricting your players to a 640 by 480 pixels sized screen area?
[02:17:35] <Xoppa> viewport pixels? you mean imaginary pixels which are not related to actual pixels at all?
[02:17:43] <Shawneth> Yes
[02:18:05] <Xoppa> then why did you choose that value? why not 64000 by 48000 or 6.4f by 4.8f?
[02:18:30] <Shawneth> The style of the game must be 640 by 480 because that's the level of detail for the sprites I'm using
[02:18:53] <Shawneth> Any smaller than the sprites will look too big
[02:18:56] <Xoppa> you mean that you are coupling asset size to game logic?
[02:19:15] <Shawneth> yeah
[02:19:23] <Xoppa> yeah, dont do that
[02:19:41] <Shawneth> hmmm, what should I do differently?
[02:19:46] <Xoppa> ditch you imaginary ¨pixel units¨ and use sane units instead
[02:20:04] <Xoppa> see also: blog.xoppa.com/pixels
[02:20:22] <Shawneth> I'll read that now, just a moment
[02:20:22] <Silferein> Gee Xoppa, it's as if you've run into this one before
[02:20:38] <Shawneth> I didn't think of this as an issue before
[02:21:22] <Xoppa> the size of your game object should have nothing to do with how they look on a specific device
[02:21:33] <Xoppa> Silferein, indeed ;)
[02:22:08] <Silferein> Hey, is there a good way to draw lines or .svg files?
[02:22:15] <Silferein> And by good I mean "easy"
[02:22:42] <Xoppa> Silferein, ShapeRenderer
[02:27:42] *** monomolecular <monomolecular!~monomolec@174-24-157-29.tukw.qwest.net> has joined #libgdx
[02:28:32] <Silferein> Thanks- is it possible to change the line thickness?
[02:29:39] <Xoppa> yes on some devices it is, but thats not something you want to rely on, instead just render a quad
[02:33:48] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[02:35:27] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[02:35:34] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Remote host closed the connection)
[02:36:09] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[02:38:15] *** cackling_ladies <cackling_ladies!~cackling_@14.162.209.116> has joined #libgdx
[02:38:53] *** Shawneth <Shawneth!6caa9a04@gateway/web/freenode/ip.108.170.154.4> has quit IRC (Quit: Page closed)
[02:40:55] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 265 seconds)
[02:47:21] *** Xoppa <Xoppa!~Xoppa@54689556.cm-12-1c.dynamic.ziggo.nl> has quit IRC (Quit: Leaving)
[02:50:36] *** Silferein <Silferein!~john@2601:600:9100:1cf0:4d66:60ed:f5a1:58f7> has left #libgdx
[02:55:40] *** Mithrin2 is now known as Mithrin_
[02:57:13] *** atrus6 <atrus6!~Thunderbi@72.241.82.247> has quit IRC (Ping timeout: 248 seconds)
[03:00:30] *** Biliogadafr <Biliogadafr!~PIN@nat2-minsk-pool-46-53-194-183.telecom.by> has quit IRC (Ping timeout: 264 seconds)
[03:09:24] *** monomolecular <monomolecular!~monomolec@174-24-157-29.tukw.qwest.net> has quit IRC (Ping timeout: 244 seconds)
[03:15:32] *** rubenwardy <rubenwardy!~rubenward@unaffiliated/rubenwardy> has quit IRC (Remote host closed the connection)
[03:17:15] <LunarPathway> ok, heres a question: Using Eclipse as an IDE, and Eclipse keeps complaining about migrating from STS Gradle to something called Buildship. I looked at the page listing differences between the two, and I cannot tell if any of the STS-only features are necessary for LibGDX Gradle build. Any advice on this?
[03:21:46] <Tomski> use buildship
[03:21:59] <LunarPathway> ok, thank you
[03:30:24] *** Sadale <Sadale!~Sadale@unaffiliated/sadale> has joined #libgdx
[03:34:28] *** jabb <jabb!~jabb@108-248-27-198.lightspeed.renonv.sbcglobal.net> has quit IRC (Quit: jabb)
[03:36:30] *** n3o59hf <n3o59hf!~n3o59hf@46.109.126.237> has quit IRC (Ping timeout: 264 seconds)
[03:42:03] *** icomputo <icomputo!~saku@177.228.136.100> has quit IRC (Quit: icomputo.com)
[03:46:39] *** guardianA_ <guardianA_!~guardianA@58-7-251-143.dyn.iinet.net.au> has joined #libgdx
[03:46:43] *** guardianA_ <guardianA_!~guardianA@58-7-251-143.dyn.iinet.net.au> has quit IRC (Max SendQ exceeded)
[03:47:15] *** guardianA_ <guardianA_!~guardianA@58-7-251-143.dyn.iinet.net.au> has joined #libgdx
[03:49:55] *** monomolecular <monomolecular!~monomolec@174-24-157-29.tukw.qwest.net> has joined #libgdx
[03:49:59] *** guardianA <guardianA!~guardianA@58-7-249-81.dyn.iinet.net.au> has quit IRC (Ping timeout: 272 seconds)
[03:54:31] *** crazy_im1 <crazy_im1!~mj@a89-182-201-107.net-htp.de> has joined #libgdx
[03:58:06] *** crazy_imp <crazy_imp!~mj@unaffiliated/crazy-imp/x-8704303> has quit IRC (Ping timeout: 264 seconds)
[04:08:08] *** isdera <isdera!~isdera@cpe-74-78-187-102.maine.res.rr.com> has joined #libgdx
[04:12:57] *** guardianA_ <guardianA_!~guardianA@58-7-251-143.dyn.iinet.net.au> has quit IRC (Ping timeout: 248 seconds)
[04:13:27] *** guardianA <guardianA!~guardianA@58-7-254-104.dyn.iinet.net.au> has joined #libgdx
[04:19:48] *** jabb <jabb!~jabb@108-248-27-198.lightspeed.renonv.sbcglobal.net> has joined #libgdx
[04:25:08] *** guardianA_ <guardianA_!~guardianA@58-7-223-33.dyn.iinet.net.au> has joined #libgdx
[04:26:17] *** guardianA <guardianA!~guardianA@58-7-254-104.dyn.iinet.net.au> has quit IRC (Ping timeout: 265 seconds)
[04:38:01] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[04:43:41] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 265 seconds)
[04:59:21] *** guardianA_ <guardianA_!~guardianA@58-7-223-33.dyn.iinet.net.au> has quit IRC (Ping timeout: 248 seconds)
[05:49:17] *** d4rkforc1 <d4rkforc1!~darkforce@pdpc/supporter/student/d4rkforce> has joined #libgdx
[05:50:20] *** lukass_ <lukass_!~lukass@p5B077CE2.dip0.t-ipconnect.de> has joined #libgdx
[05:52:51] *** d4rkforce <d4rkforce!~darkforce@pdpc/supporter/student/d4rkforce> has quit IRC (Ping timeout: 272 seconds)
[05:53:11] *** lukass <lukass!~lukass@p5B077896.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 244 seconds)
[05:53:29] *** isdera <isdera!~isdera@cpe-74-78-187-102.maine.res.rr.com> has quit IRC (Ping timeout: 272 seconds)
[06:05:10] *** wickedshell_ <wickedshell_!~wickedshe@160-3-85-217.cpe.cableone.net> has quit IRC (Remote host closed the connection)
[06:07:48] *** Kuvis <Kuvis!~owner@line-5467.dyn.kponet.fi> has joined #libgdx
[06:13:39] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has joined #libgdx
[06:36:20] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has quit IRC (Remote host closed the connection)
[06:40:52] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[06:42:16] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has joined #libgdx
[06:42:54] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has quit IRC (Remote host closed the connection)
[06:43:13] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has joined #libgdx
[06:45:29] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 265 seconds)
[06:46:18] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has quit IRC (Read error: Connection reset by peer)
[06:46:46] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has joined #libgdx
[06:51:26] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has quit IRC (Remote host closed the connection)
[07:55:04] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has joined #libgdx
[07:55:34] *** guardianA <guardianA!~guardianA@58-7-232-47.dyn.iinet.net.au> has joined #libgdx
[07:59:07] *** pyroMechanical <pyroMechanical!~pyroMecha@96.36.38.82> has joined #libgdx
[07:59:11] <pyroMechanical> hello everyone!
[07:59:55] *** Fastinyoh <Fastinyoh!~Fastinyoh@204.28.124.221> has quit IRC (Ping timeout: 265 seconds)
[08:00:55] <pyroMechanical> quick question, is there a good concise way to add the preset libraries that you didn't add?
[08:02:54] *** guardianA <guardianA!~guardianA@58-7-232-47.dyn.iinet.net.au> has quit IRC (Ping timeout: 264 seconds)
[08:05:09] *** guardianA <guardianA!~guardianA@124-170-65-6.dyn.iinet.net.au> has joined #libgdx
[08:05:14] <pyroMechanical> like, to give you an idea of what I -want- to do, I want to add b2dlights to a project I forgot to include it with
[08:09:30] <pyroMechanical> ty
[08:10:39] *** rwarwaa <rwarwaa!d813bdd4@gateway/web/freenode/ip.216.19.189.212> has joined #libgdx
[08:17:00] <TEttinger> hm, I'm thinking I should make a standalone pathfindy thing for use from libGDX without pulling in all my other lib stuff
[08:23:53] <rwarwaa> why is it*
[08:35:53] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[08:35:55] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has quit IRC (Client Quit)
[08:36:35] <Ashiren> hmm
[08:37:18] <Ashiren> chould be the box2d limit, but values arent that high
[08:38:23] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[08:38:25] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has quit IRC (Client Quit)
[08:38:26] <Ashiren> according to my math it should take about 10s, almost good :v
[08:39:23] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[08:39:24] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has quit IRC (Client Quit)
[08:39:40] <Ashiren> dont work in pixels :c
[08:42:39] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[08:44:07] *** Shockah <Shockah!~Shockah@bvy40.neoplus.adsl.tpnet.pl> has joined #libgdx
[08:47:17] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 265 seconds)
[08:48:35] <Tomski> s = ut + 0.5*a*t*t, so sqrt(800/9.8) = 9.03 = t
[08:49:45] <Tomski> rwarwaa: what do you expect to happen?
[09:15:04] <Ashiren> well it take 50% more time doesnt it
[09:35:47] *** monomolecular <monomolecular!~monomolec@174-24-157-29.tukw.qwest.net> has quit IRC (Ping timeout: 272 seconds)
[09:46:10] *** monomolecular <monomolecular!~monomolec@174-24-157-29.tukw.qwest.net> has joined #libgdx
[09:49:05] *** davebaol <davebaol!~davebaol@93-38-228-85.ip72.fastwebnet.it> has joined #libgdx
[10:23:18] *** davebaol <davebaol!~davebaol@93-38-228-85.ip72.fastwebnet.it> has quit IRC (Ping timeout: 264 seconds)
[10:25:42] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has quit IRC (Ping timeout: 264 seconds)
[10:34:16] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has joined #libgdx
[10:40:39] *** guardianL_ <guardianL_!~guardian@124-170-65-6.dyn.iinet.net.au> has joined #libgdx
[10:44:24] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[10:47:16] *** Kotcrab <Kotcrab!uid51771@gateway/web/irccloud.com/x-lbrrjeoqvfqdfpiz> has joined #libgdx
[10:49:05] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 265 seconds)
[10:56:15] *** karab44 <karab44!~karab44@unaffiliated/karab44> has joined #libgdx
[10:56:32] *** LegendThinker <LegendThinker!LegendThin@gateway/shell/fnordserver.eu/x-slkfbxeblbzjgpmz> has joined #libgdx
[11:03:52] *** mtphr <mtphr!~metaphore@31.204.23.14> has joined #libgdx
[11:21:14] *** kjempff <kjempff!~kvirc@1004ds2-arno.0.fullrate.ninja> has joined #libgdx
[11:26:38] *** darkamikaze <darkamikaze!~darkamika@cpe-76-169-176-20.socal.res.rr.com> has quit IRC (Read error: Connection reset by peer)
[11:27:28] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has quit IRC (Ping timeout: 244 seconds)
[11:31:13] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has joined #libgdx
[11:38:23] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has quit IRC (Ping timeout: 252 seconds)
[11:40:56] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has joined #libgdx
[11:46:55] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has joined #libgdx
[11:55:18] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has quit IRC (Ping timeout: 265 seconds)
[12:15:48] *** guardianL_ <guardianL_!~guardian@124-170-65-6.dyn.iinet.net.au> has quit IRC ()
[12:17:03] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has quit IRC (Ping timeout: 265 seconds)
[12:27:48] *** Xoppa <Xoppa!~Xoppa@54689556.cm-12-1c.dynamic.ziggo.nl> has joined #libgdx
[12:27:48] *** ChanServ sets mode: +o Xoppa
[12:30:07] *** TobyToby <TobyToby!573c4af3@gateway/web/cgi-irc/kiwiirc.com/ip.87.60.74.243> has joined #libgdx
[12:30:17] <TobyToby> Hello!
[12:32:01] <TobyToby> Has anyone experienced problems with using Gdx.graphics.getHeight() ? I'm getting mixed results on Android
[12:33:09] <TEttinger> what kind of problems?
[12:33:21] <TobyToby> It is if the value behind Gdx.graphics.getHeight() is never getting refreshed... so whatever state you first called it from it keeps
[12:33:23] *** Shockah_ <Shockah_!~Shockah@abdw224.neoplus.adsl.tpnet.pl> has joined #libgdx
[12:33:23] *** Shockah is now known as Guest426
[12:33:23] *** Shockah_ is now known as Shockah
[12:33:47] <TobyToby> For example... open an Activity in fullscreen mode
[12:33:48] <TEttinger> i think you may want to check rotation of the device somehow
[12:34:09] <TobyToby> After a new acitivity with navigationbar and statusbar shown
[12:34:35] <TobyToby> the height from Gdx.graphics.getHeight() will have the value from the fullscreen Activity
[12:35:27] <TobyToby> Therefore drawing in the Activity with navigationbar and statusbar will be incorrect... as the value of Gdx.graphics.getHeight() is actually from the Activity in fullscreen mode
[12:35:59] <TobyToby> I have used a lot of time on this issue
[12:36:52] *** Guest426 <Guest426!~Shockah@bvy40.neoplus.adsl.tpnet.pl> has quit IRC (Ping timeout: 265 seconds)
[12:37:44] <TEttinger> hm...
[12:38:12] <TEttinger> I'm not too familiar with how Activities work even as a user of an Android phone
[12:38:50] <TEttinger> Xoppa might know, hey Xoppa
[12:39:55] *** n3o59hf <n3o59hf!~n3o59hf@46.109.126.237> has joined #libgdx
[12:43:25] <TEttinger> have you implemented a resize method?
[12:43:40] <mtphr> TobyToby, I'm a bit confused. If you're using AndroidApplication as Android host of your LibGDX application, than you always should draw onto SurfaceView which is always stretched to activity size. Isn't that right?
[12:44:54] <TobyToby> The thing is that I have AndroidApplication and a AndroidLiveWallpaperService
[12:45:56] <Tomski> sounds like you need to make a sscce
[12:46:49] <TobyToby> You're right... maybe a good idea... I'm having some trouble explaining it properly
[12:47:21] <TobyToby> I'm running 1.9.4
[12:50:05] <TEttinger> "LiveWallpaper: added proper support for attach to and detach from window on Android"
[12:50:14] <mtphr> Hm, TobyToby do you use AndroidApplication for live wallpaper preview right?
[12:50:14] <TEttinger> that's a recent addition
[12:50:39] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has quit IRC (Ping timeout: 244 seconds)
[12:51:14] <TobyToby> mtphr: No
[12:52:12] <TobyToby> mtphr: It uses AndroidLiveWallpaperService, but the preview actually has a shorter height because the navigationbar and statusbar is shown
[12:52:57] <TobyToby> When the wallpaper is applied navigationbar and statusbar becomes overlayed
[12:52:57] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[12:52:57] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has quit IRC (Client Quit)
[12:53:25] *** iworkinpixels <iworkinpixels!~Adium@2604:2d80:c405:c070:f924:47cb:c5af:2a95> has joined #libgdx
[12:53:53] *** iworkinpixels <iworkinpixels!~Adium@2604:2d80:c405:c070:f924:47cb:c5af:2a95> has quit IRC (Client Quit)
[12:54:02] <TobyToby> TEttinger: Yes, that is because it is also possible to hide statusbar etc. in an activity
[12:54:42] <TobyToby> To me it seems like Gdx.graphics.getHeight does not actually return the height of what is rendered
[12:55:03] <TobyToby> Or has problems with updating the value
[12:55:20] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has joined #libgdx
[12:55:59] <TobyToby> I guess the same applies to getWidth()... but does not cause problems because the width always stays the same
[12:56:10] <TobyToby> More or less
[12:57:00] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has joined #libgdx
[12:58:07] <TobyToby> TEttinger: "LiveWallpaper: added proper support for attach to and detach from window on Android" Were did you find that?
[12:58:22] <Tomski> make a sscce and find out
[12:58:27] <Tomski> no point guessing
[13:00:57] *** Freiza <Freiza!AdiIRC@117.205.145.122> has joined #libgdx
[13:01:30] <Freiza> should I use raytracing or intersector?
[13:01:45] <Freiza> for action game?
[13:01:48] <TEttinger> TobyToby: that's in a commit since 1.9.4. you can try the latest version with the nightly builds
[13:02:09] <Freiza> TEttinger: Hi
[13:02:30] <TEttinger> hm, nvm
[13:02:33] <TEttinger> hey Freiza
[13:03:14] *** Kuvis <Kuvis!~owner@line-5467.dyn.kponet.fi> has quit IRC (Remote host closed the connection)
[13:06:29] <TobyToby> TEttinger: I guess 1.9.5-SNAPSHOT on sonatype will do?
[13:06:58] <TEttinger> sure, there's instructions on the wiki for how to update if you don't already know
[13:07:23] <TEttinger> 1.9.5-SNAPSHOT seems right
[13:07:47] <TobyToby> TEttinger: I'll try it out
[13:07:48] <TEttinger> it looks like this bug was fixed (they thought?) in 1.5.0
[13:08:00] <TEttinger> but maybe some newer android versions changed things
[13:09:09] <TobyToby> Still doesn't work
[13:09:15] <TobyToby> :(
[13:10:00] <TEttinger> if you can make the smallest test application that still has the bug, then submit an issue
[13:11:45] *** Freiza <Freiza!AdiIRC@117.205.145.122> has quit IRC (Ping timeout: 272 seconds)
[13:11:48] <TobyToby> Good idea... I'll see to it
[13:12:21] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has quit IRC (Ping timeout: 244 seconds)
[13:14:52] *** Larry1123 <Larry1123!Larry1123@irc.larry1123.net> has joined #libgdx
[13:15:37]
*** TobyToby <TobyToby!573c4af3@gateway/web/cgi-irc/kiwiirc.com/ip.87.60.74.243> has quit IRC (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client)
[13:40:25] *** TEttinger <TEttinger!~notostrac@76-217-24-171.lightspeed.irvnca.sbcglobal.net> has quit IRC (Ping timeout: 248 seconds)
[13:43:04] *** Biliogadafr <Biliogadafr!~PIN@nat2-minsk-pool-46-53-194-183.telecom.by> has joined #libgdx
[13:44:54] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[13:44:57] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has quit IRC (Client Quit)
[13:48:35] *** guardianL_ <guardianL_!~guardian@124-170-65-6.dyn.iinet.net.au> has joined #libgdx
[13:53:18] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has quit IRC (Ping timeout: 264 seconds)
[14:04:58] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has joined #libgdx
[14:11:44] *** Kuvis <Kuvis!~owner@line-5467.dyn.kponet.fi> has joined #libgdx
[14:15:29] *** hextileX <hextileX!~Thunderbi@xdsl-87-79-176-104.netcologne.de> has joined #libgdx
[14:18:08] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[14:18:09] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has quit IRC (Client Quit)
[14:27:37] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has joined #libgdx
[14:32:49] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has quit IRC (Ping timeout: 272 seconds)
[14:48:54] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[15:07:53] *** Biliogadafr <Biliogadafr!~PIN@nat2-minsk-pool-46-53-194-183.telecom.by> has quit IRC (Ping timeout: 248 seconds)
[15:14:47] *** atrus6 <atrus6!~Thunderbi@72.241.82.247> has joined #libgdx
[15:20:35] *** robobba <robobba!54dbd751@gateway/web/freenode/ip.84.219.215.81> has joined #libgdx
[15:47:21] *** LegendThinker <LegendThinker!LegendThin@gateway/shell/fnordserver.eu/x-slkfbxeblbzjgpmz> has quit IRC (Ping timeout: 248 seconds)
[15:53:12] *** robobba <robobba!54dbd751@gateway/web/freenode/ip.84.219.215.81> has quit IRC (Ping timeout: 240 seconds)
[15:54:03] *** Neomex <Neomex!~Neomex@brj145.neoplus.adsl.tpnet.pl> has joined #libgdx
[16:03:20] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[16:04:52] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[16:06:16] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[16:06:47] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[16:08:11] <madytyoo> Hi guys, anybody know where to find a tutorial for libgdx Flame?
[16:08:13] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[16:14:12] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[16:19:50] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[16:20:19] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[16:34:05] *** LegendThinker <LegendThinker!LegendThin@gateway/shell/fnordserver.eu/x-vmyxxchnsqgmzygu> has joined #libgdx
[16:34:17] *** hextileX <hextileX!~Thunderbi@xdsl-87-79-176-104.netcologne.de> has quit IRC (Ping timeout: 252 seconds)
[16:35:23] *** n3o59hf <n3o59hf!~n3o59hf@46.109.126.237> has quit IRC (Ping timeout: 252 seconds)
[16:41:58] *** guardianL_ <guardianL_!~guardian@124-170-65-6.dyn.iinet.net.au> has quit IRC ()
[16:56:04] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has quit IRC (Ping timeout: 244 seconds)
[16:56:44] *** Sadale <Sadale!~Sadale@unaffiliated/sadale> has quit IRC (Quit: Ĝis revido)
[17:02:34] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[17:03:06] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[17:04:39] *** hextileX <hextileX!~Thunderbi@xdsl-87-79-176-104.netcologne.de> has joined #libgdx
[17:06:42] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has joined #libgdx
[17:11:13] *** n3o59hf <n3o59hf!~n3o59hf@46.109.126.237> has joined #libgdx
[17:18:57] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[17:33:30] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[17:41:56] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[17:41:56] *** hextileX <hextileX!~Thunderbi@xdsl-87-79-176-104.netcologne.de> has quit IRC (Ping timeout: 252 seconds)
[17:43:03] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[17:43:07] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[17:52:39] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Remote host closed the connection)
[17:53:13] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[17:55:11] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[17:57:33] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 244 seconds)
[18:03:36] *** guardianA <guardianA!~guardianA@124-170-65-6.dyn.iinet.net.au> has quit IRC (Ping timeout: 265 seconds)
[18:11:00] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[18:15:07] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Ping timeout: 244 seconds)
[18:16:18] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has joined #libgdx
[18:16:32] *** rgr <rgr!~user@p20030086AB1C6E017EDD90FFFE49493A.dip0.t-ipconnect.de> has joined #libgdx
[18:19:04] *** hextileX <hextileX!~Thunderbi@xdsl-87-79-176-104.netcologne.de> has joined #libgdx
[18:22:12] *** hextileX <hextileX!~Thunderbi@xdsl-87-79-176-104.netcologne.de> has quit IRC (Client Quit)
[18:32:10] *** atrus6 <atrus6!~Thunderbi@72.241.82.247> has quit IRC (Ping timeout: 244 seconds)
[18:41:41] *** Biliogadafr <Biliogadafr!~PIN@nat2-minsk-pool-46-53-194-183.telecom.by> has joined #libgdx
[19:04:10] *** Rembrandt <Rembrandt!~rembrandt@c98195.upc-c.chello.nl> has quit IRC (Read error: Connection reset by peer)
[19:12:45] *** Freiza <Freiza!AdiIRC@117.205.149.41> has joined #libgdx
[19:13:11] <Freiza> How to access index of atlas file?
[19:13:22] <pyroMechanical> thanks Tomski for the link :)
[19:23:51] *** dhk <dhk!~dhk@138.59.24.18> has joined #libgdx
[19:24:58] <Xoppa> which index Freiza?
[19:25:20] *** Freiza <Freiza!AdiIRC@117.205.149.41> has quit IRC (Ping timeout: 252 seconds)
[19:37:47] *** dhk <dhk!~dhk@138.59.24.18> has quit IRC (Quit: Leaving)
[19:40:51] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[19:49:38] <pyroMechanical> FUCK
[19:49:51] <pyroMechanical> I broke my game because I forgot to include something
[19:49:54] <pyroMechanical> now it's all gone
[19:49:59] <pyroMechanical> ;-;
[19:50:06] <pyroMechanical> or rather
[19:50:20] <pyroMechanical> I have to rewrite my core class
[19:55:04] <Ashiren> huh
[19:56:05] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has joined #libgdx
[19:57:25] <[twisti]> if only there was a mechanism designed specifically to prevent things like that
[19:57:32] <[twisti]> one could call it maybe something like git
[19:58:15] <Ashiren> maybe he forgot to include git
[19:58:23] <[twisti]> lol
[19:59:44] <kdarknight> hahah
[20:00:10] <kdarknight> i only use git to make a copy on github
[20:02:18] <[twisti]> bitbucket > github
[20:02:37] *** intrigus <intrigus!uid114902@gateway/web/irccloud.com/x-grjsvgajwnoemgfq> has joined #libgdx
[20:02:46] <[twisti]> that xkcd is perfect though
[20:03:23] <kdarknight> someone please hire me
[20:05:10] *** Neomex <Neomex!~Neomex@brj145.neoplus.adsl.tpnet.pl> has quit IRC (Quit: Leaving)
[20:11:22] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[20:13:38] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has joined #libgdx
[20:18:08] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has quit IRC (Ping timeout: 252 seconds)
[20:19:40] *** davebaol <davebaol!~davebaol@93-38-229-89.ip72.fastwebnet.it> has joined #libgdx
[20:24:30] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has quit IRC (Ping timeout: 264 seconds)
[20:32:18] *** cackling_ladies <cackling_ladies!~cackling_@14.162.209.116> has quit IRC (Ping timeout: 264 seconds)
[20:35:09] *** mtphr <mtphr!~metaphore@31.204.23.14> has quit IRC (Read error: Connection reset by peer)
[20:36:54] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[20:44:01] *** Freiza <Freiza!AdiIRC@117.205.152.60> has joined #libgdx
[20:51:24] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[20:54:45] *** rubenwardy <rubenwardy!~rubenward@unaffiliated/rubenwardy> has joined #libgdx
[20:55:13]
*** LegendThinker <LegendThinker!LegendThin@gateway/shell/fnordserver.eu/x-vmyxxchnsqgmzygu> has quit IRC (Quit: https://fnordserver.eu)
[20:57:13] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[20:57:46] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has joined #libgdx
[21:15:21] *** Moshdev <Moshdev!~moshdev@79.97.62.13> has quit IRC (Remote host closed the connection)
[21:20:12] *** Kuvis <Kuvis!~owner@line-5467.dyn.kponet.fi> has quit IRC (Remote host closed the connection)
[21:36:31] *** enteee <enteee!~ente@duckpond.ch> has quit IRC (Ping timeout: 272 seconds)
[21:45:24] *** kdarknight <kdarknight!~kdarknigh@unaffiliated/kdarknight> has quit IRC (Ping timeout: 244 seconds)
[21:50:22] <dnyy> are there any free profilers or w/e to see why FPS is so low? or maybe a way to do it in intellij? (first time working w/ java no idea how to figure out performance issues lol)
[21:59:54] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has joined #libgdx
[22:02:45] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[22:12:58] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[22:19:38] *** wickedshell_ <wickedshell_!~wickedshe@160-3-85-217.cpe.cableone.net> has joined #libgdx
[22:21:42] *** atrus6 <atrus6!~Thunderbi@72.241.82.247> has joined #libgdx
[22:28:17] *** karab44 <karab44!~karab44@unaffiliated/karab44> has quit IRC (Quit: Bye bye! o/)
[22:44:45] *** darkamikaze <darkamikaze!~darkamika@cpe-76-169-176-20.socal.res.rr.com> has joined #libgdx
[22:45:24] <dnyy> hm, but then i have to kinda know where to test (or just run it everywhere i guess)
[22:47:24] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has quit IRC (Ping timeout: 244 seconds)
[22:56:28] *** okb1100 <okb1100!~okb1100@78.175.215.186> has joined #libgdx
[22:59:24] *** pyroMechanical <pyroMechanical!~pyroMecha@96.36.38.82> has quit IRC (Ping timeout: 265 seconds)
[23:00:01] *** pyroMechanical <pyroMechanical!~pyroMecha@96.36.38.82> has joined #libgdx
[23:02:23] *** monsieur_h <monsieur_h!~Thunderbi@maa78-h05-176-130-32-132.dsl.sta.abo.bbox.fr> has joined #libgdx
[23:02:33] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[23:07:31] *** TEttinger <TEttinger!~notostrac@76-217-24-171.lightspeed.irvnca.sbcglobal.net> has joined #libgdx
[23:08:00] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has joined #libgdx
[23:17:04] *** mtsr_ <mtsr_!~mtsr@5ED369D0.cm-7-4b.dynamic.ziggo.nl> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…)
[23:20:41] *** davebaol <davebaol!~davebaol@93-38-229-89.ip72.fastwebnet.it> has quit IRC (Ping timeout: 248 seconds)
[23:25:30] *** Silferein <Silferein!~john@2601:600:9100:1cf0:f8d3:5af7:7129:c3a5> has joined #libgdx
[23:29:58] *** kjempff <kjempff!~kvirc@1004ds2-arno.0.fullrate.ninja> has quit IRC (Read error: Connection reset by peer)
[23:34:07] *** icomputo <icomputo!~saku@177.228.138.76> has joined #libgdx
[23:44:21] *** Shockah <Shockah!~Shockah@abdw224.neoplus.adsl.tpnet.pl> has quit IRC (Quit: Leaving)
[23:47:54] *** iworkinpixels <iworkinpixels!~Adium@173-22-231-51.client.mchsi.com> has joined #libgdx
[23:53:13] *** atrus6 <atrus6!~Thunderbi@72.241.82.247> has quit IRC (Ping timeout: 248 seconds)
[23:54:17] *** rgr <rgr!~user@p20030086AB1C6E017EDD90FFFE49493A.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 248 seconds)
[23:57:29] *** Silferein <Silferein!~john@2601:600:9100:1cf0:f8d3:5af7:7129:c3a5> has quit IRC (Ping timeout: 248 seconds)