Kinect & XNA Cannon Game

 Fun to work with kinect, xna and kinect work together was a great experience and results :)

 

continue >>

Simple Collision - XNA

lately very much interested in XNA, i wanted to write some of the issues

 private void SimpleCollision()
        {
            Rectangle rectangle1;
            Rectangle rectangle2;

            foreach (var blt in lstBullet)
            {

                rectangle1 = new Rectangle((int)blt.position.X, (int)blt.position.Y, blt.bull.Width, blt.bull.Height);

                foreach (var enm in lstEnemy)
                {
                    rectangle2 = new Rectangle((int)enm.enemyPosition.X,
                        (int)enm.enemyPosition.Y, enm.enemy.Width, enm.enemy.Height);

                    if (rectangle1.Intersects(rectangle2))
                    {
                        enm.status = false;
                        blt.status = false;
                    }
                }
            }
        }

continue >>

iSlash

Game time "iSlash" an iPhone game for Ninjas :)  A perfect game to tune up your ninja senses. Your finger is your weapon. Swipe to slash your way through different levels.
Master your ninja skills while sitting on a couch. 
Other Detail

DuelloGames web


continue >>

Turkish Restaurant

Son zamanlarda ofisteki yogunluktan dolayi oyunlara cok sardigim yakin çevremdekiler bilir.Yeni gözdeleirmden biri olan Prototype gerçekten bana farkli ve basari gelmis oyunlardan biri bundan oyun içinde özellikle gözüme çarpan bisi oldu ki hosuma da gitti açikcasi

turkishRestaurant

tabiki bunu Türklerin yapmasini görmek çok daha iyi olurdu :)

continue >>
Page 1 of 1   1