Sunday, 8 December 2013

[PL] Spotkanie Grupy.NET Politechniki Lubelskiej


Już we wtorek (10.12.2013) znów będzie można mnie posłuchać!
Tym razem będę prowadził spotkanie Grupy.NET działającej na Politechnice Lubelskiej!

Będę kontynuować to co zacząłem już na ITADzie, czyli tworzenie gier w Unity3D!

Zapraszam serdecznie wszystkich zainteresowanych! ;)

Link do wydarzenia:
http://codeguru.geekclub.pl/kalendarium/podglad-wydarzenia/tworzenie-gier-w-unity-3d,9091

IT Academic Day at Lublin University of Technology


So last week we were on ITAD at Lublin University of Technology with Łukasz Wójcik :)
We talk about our job (Pixel Frog), Unity3D and Lublin GameDev group ;)

Of course Unity3D help us... With 3 crashes and some other fun things but overall our lecture was good! :) (I hope so)

And some photos :)


Tuesday, 26 November 2013

Lublin GameDev on ITAD UMCS


Tomorrow (27. november) our Lublin GameDev team will be on IT Academic Day UMCS.
Again we'll present our games to people and again we'll let them play :)

This is next opportunity to promote our gamedev group and take some photos.. :D
Also we have a chance to talk about ours games and get some feedback from players :)

And in next week will be ITAD on Lublin University of Technology and I'll be speaker!
That's awesome! With friend we'll be talking about Unity3D and our Lublin GameDev group.

Ok.. That's all for now. I need to fix some bugs for tomorrow ^^

Friday, 15 November 2013

Lublin GameDev - some moar information :)

Now you can ask how it was at Microsoft Innovation Summit in Lublin :)

Our Lublin GameDev group
I can say that it was great opportunity to promote our Lublin GameDev group and find out that more people are interested in making games in Lublin! GREAT!!! Our group is growing! :D

Gallery is available on our FB fanpage (Link)

Ok, I think it's time to tell something more about our group. How we work, what we're doing and where you can meet as :)

Tuesday, 12 November 2013

Lublin GameDev & Microsoft Innovation Summit

Better than never..

So tomorrow we're going to Microsoft Innovation Summit as Lublin GameDev group to show our work to other people. I'm pretty excited about it! :D

I'm gonna show Viking Memo, 2 racing prototypes, some augmented reality projects and one visualization project (or this will be game.. I'll share some more information on blog). :)

More information from this event soon.. :)

Tuesday, 24 September 2013

How to use enums to store keys for scripts in Unity3D

Everyone love strings. Especially those hard-code when you can find all references to this one which you're looking for...
How much I love reading such code and often fix it... This is almost the best thing after magic-classes with thousands of lines and no comments.

<Sarcasm off>

But lets back to the our topic...

What is "enum"? And why should I use it?

Enumerated type (in short enum) is a data type consisting of named constant values. (from Wikipedia).
For example
enum Days {Mon, Tue, Wed, Thu, Fri, Sat, Sun};

Monday, 9 September 2013

JSON - how to convert variables it into text and vice versa (with Unity3D & PlayerPrefs)

Recently I used JSON a lot and I'd like to share some knowledge about it.
Here I'm using MiniJSON (link) because I prefer C# rather than JS (this one make me sick!).


So at beginning what JSON is?
JSON is a... string :) And it can have our arrays, dictionaries, variables and other crazy things. And this is all about it, but if you like reading you should go to Wikipedia and read all about it :P