Use UNITY for develop high performance 3D game in iPhone

3D game development platform for iPhone

iPhone developers can develop high performance 3D game easily for the iphone OS 3.0. Unity Technologies, which makes 3D game development tools has high-end 3D game programming platform for the iPhone /iPod Touch. Developers can download  Unity iPhone 1.5.1 from http://unity3d.com/ and install the setup. Also read their online documentation and start working.Over 325 games are already shipped.

How set mod-rewrite on for your project in mac

Today while start working in an existing project which actually developed in windows, its all links are not working. So, first I have to set virtual host in leopard and place .htaccess file in my project root public_html folder. Then try to browse through all image buttons, but it didn’t work. We check mod-rewrite option, it didn’t works for our project. So I have to add following lines into /etc/httpd.conf file:

<Directory “/Applications/XAMPP/xamppfiles/htdocs/myproject.com/public_html”>

Options FollowSymLinks
AllowOverride All
#XAMPP
#Order deny,allow
#Deny from all

</Directory>

here myproject.com is my project folder name. Now I can browse again through all buttons.