<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lazyer.net</title>
	<atom:link href="http://lazyer.net/feed" rel="self" type="application/rss+xml" />
	<link>http://lazyer.net</link>
	<description>Focuses on the development of  Android platforms.</description>
	<lastBuildDate>Sun, 13 Nov 2011 14:45:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WiEngine介绍</title>
		<link>http://lazyer.net/wiengine-introduction</link>
		<comments>http://lazyer.net/wiengine-introduction#comments</comments>
		<pubDate>Sun, 13 Nov 2011 14:45:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WiEngine]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[引擎]]></category>
		<category><![CDATA[游戏]]></category>

		<guid isPermaLink="false">http://lazyer.net/?p=372</guid>
		<description><![CDATA[目前网络上有不少Android的游戏引擎，有2d的有3d的，有国人制做，也有老外制造。 哪到底是选哪一个好呢？找个就要从学习成本，代码风格，性能，使用率，等等等等很多方面来衡量了。 这里，就给大家介绍一个LazyerStudio正在使用的游戏引擎，WiEngine。 WiEngine是简洁实用的类库，使用它可以让我们在游戏开发过程中节省大量的时间。 让我们线来看看来自微云官方的说明： 微云游戏引擎(以下称为WiEngine)是一个适用于iOS/Android系统的2D游戏引擎。WiEngine参考吸取了iPhone平台著名引擎cocos2d的设计理念，针对iOS/Android系统结构的特点进行了大量的适配开发，设计修改和性能增强工作。 在使用上WiEngine与cocos2d大致相同，降低了从头学习的时间成本，能让您更容易和快速地设计和开发出游戏。 在功能上，WiEngine目前已支持2D图像渲染、粒子系统、碰撞检测系统、脚本引擎、动画特效、光影特效、人工智能以及场景管理等超过十大类的特性和特效。 来这段介绍来看，WiEngine是一个跨平台的游戏引擎，如果你在开发Android游戏的同时，也想开发或者也打算开发IOS应用，那这个引擎肯定是你的不二之选。 下边我们来说说如何开始第一个WiEngine项目。 首先，去官方网站下载WiEngine SDK，解压之后，在doc\zh目录下有一个叫WiEngine 3.x综述.pdf的文件，这个文件是告诉你如何部署WiEngine的。 这里简单的说一下流程(参考文档的&#8221;部署方式 Android 版本&#8221;一节)： 1.新建一个项目。 2.将samples\WiEngine_library\libs下边你需要的jar文件导入到项目中。 PS：WiEngine-lua.jar，WiEngine-chipmunk.jar，WiEngine-box2d.jar这3个jar如果不需要可以不用导入。 3.samples\WiEngine_library\libs\armeabi和samples\WiEngine_library\libs\armeabi-v7a两个文件夹下的内容同样也是按需复制到项目名\libs下边。 4.一切搞定，第一个WiEngine项目可以开始啦。 后边豆腐将介绍如何用WiEngine做一个简单的游戏。]]></description>
			<content:encoded><![CDATA[<p>目前网络上有不少Android的游戏引擎，有2d的有3d的，有国人制做，也有老外制造。<br />
哪到底是选哪一个好呢？找个就要从学习成本，代码风格，性能，使用率，等等等等很多方面来衡量了。<br />
这里，就给大家介绍一个LazyerStudio正在使用的游戏引擎，WiEngine。<br />
WiEngine是简洁实用的类库，使用它可以让我们在游戏开发过程中节省大量的时间。<br />
让我们线来看看来自微云官方的说明：</p>
<p><img src="http://www.wiyun.com/site_media/website/img/wiengine/wiengine-title01.gif" alt="wiyun" /></p>
<p>微云游戏引擎(以下称为WiEngine)是一个适用于iOS/Android系统的2D游戏引擎。WiEngine参考吸取了iPhone平台著名引擎cocos2d的设计理念，针对iOS/Android系统结构的特点进行了大量的适配开发，设计修改和性能增强工作。 在使用上WiEngine与cocos2d大致相同，降低了从头学习的时间成本，能让您更容易和快速地设计和开发出游戏。<br />
在功能上，WiEngine目前已支持2D图像渲染、粒子系统、碰撞检测系统、脚本引擎、动画特效、光影特效、人工智能以及场景管理等超过十大类的特性和特效。</p>
<p>来这段介绍来看，WiEngine是一个跨平台的游戏引擎，如果你在开发Android游戏的同时，也想开发或者也打算开发IOS应用，那这个引擎肯定是你的不二之选。</p>
<p>下边我们来说说如何开始第一个WiEngine项目。<br />
首先，<a href="http://www.wiyun.com/wiki/DownloadSDK" title="WiEngine SDK" target="_blank">去官方网站下载WiEngine SDK</a>，解压之后，在doc\zh目录下有一个叫WiEngine 3.x综述.pdf的文件，这个文件是告诉你如何部署WiEngine的。<br />
这里简单的说一下流程(参考文档的&#8221;部署方式 Android 版本&#8221;一节)：<br />
1.新建一个项目。<br />
2.将samples\WiEngine_library\libs下边你需要的jar文件导入到项目中。<br />
PS：WiEngine-lua.jar，WiEngine-chipmunk.jar，WiEngine-box2d.jar这3个jar如果不需要可以不用导入。<br />
3.samples\WiEngine_library\libs\armeabi和samples\WiEngine_library\libs\armeabi-v7a两个文件夹下的内容同样也是按需复制到项目名\libs下边。<br />
4.一切搞定，第一个WiEngine项目可以开始啦。</p>
<p>后边豆腐将介绍如何用WiEngine做一个简单的游戏。</p>
]]></content:encoded>
			<wfw:commentRss>http://lazyer.net/wiengine-introduction/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Catch The Cat</title>
		<link>http://lazyer.net/catch-the-cat</link>
		<comments>http://lazyer.net/catch-the-cat#comments</comments>
		<pubDate>Wed, 05 Oct 2011 14:07:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://lazyer.net/?p=361</guid>
		<description><![CDATA[Catch The Cat is a highly addictive game,all you need to do tap the screen to place a trap,corner the cat before it escape from the screen! But!The cat is a well trained,and It is very smart&#8230;So, not so easy to win. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; FEATURES * Game Center Enabled,Global Online Leader Board * Animation and Nice [...]]]></description>
			<content:encoded><![CDATA[<p>Catch The Cat is a highly addictive game,all you need to do tap the screen to place a trap,corner the cat before it escape from the screen!<br />
But!The cat is a well trained,and It is very smart&#8230;So, not so easy to win.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>FEATURES<br />
* Game Center Enabled,Global Online Leader Board<br />
* Animation and Nice Graphics<br />
* Funny themes<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
<img src="http://lazyer.net/wp-content/uploads/2011/10/NOEscape1.png" alt="NO Escape!" /><br />
<span id="more-361"></span><br />
<img src="http://lazyer.net/wp-content/uploads/2011/10/NOEscape2.png" alt="NO Escape!" /><br />
<img src="http://lazyer.net/wp-content/uploads/2011/10/NOEscape3.png" alt="NO Escape!" /></p>
]]></content:encoded>
			<wfw:commentRss>http://lazyer.net/catch-the-cat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Miner Miner!</title>
		<link>http://lazyer.net/miner-miner</link>
		<comments>http://lazyer.net/miner-miner#comments</comments>
		<pubDate>Fri, 09 Sep 2011 08:33:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://lazyer.net/?p=356</guid>
		<description><![CDATA[Miner Miner!]]></description>
			<content:encoded><![CDATA[<p>Miner Miner!</p>
]]></content:encoded>
			<wfw:commentRss>http://lazyer.net/miner-miner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Runeword</title>
		<link>http://lazyer.net/runeword</link>
		<comments>http://lazyer.net/runeword#comments</comments>
		<pubDate>Mon, 22 Aug 2011 13:11:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Bubble Breaker]]></category>
		<category><![CDATA[Bubble Burst]]></category>
		<category><![CDATA[Bubblet]]></category>
		<category><![CDATA[Bubblets]]></category>
		<category><![CDATA[Jawbreaker]]></category>

		<guid isPermaLink="false">http://lazyer.net/?p=349</guid>
		<description><![CDATA[Rune Words is a fun and addictive game for the iPhone/iPod Touch. Tap once where there are more than one rune of a kind connected. Score are based on the amount of Runes you connect in one tap. Just like the Bubble Breaker game.But! Not the same! Special turn over mode,and the Super Rune make [...]]]></description>
			<content:encoded><![CDATA[<p>Rune Words is a fun and addictive game for the iPhone/iPod Touch.<br />
Tap once where there are more than one rune of a kind connected. Score are based on the amount of Runes you connect in one tap.<br />
Just like the Bubble Breaker game.But! Not the same!<br />
Special turn over mode,and the Super Rune make the game more interesting!</p>
<p>FEATURES<br />
* Rune Words is Game Center Enabled<br />
* Global Online Leader Board<br />
* Animated Instructions and Nice Graphics<br />
<img src="http://lazyer.net/wp-content/uploads/2011/09/RuneWords1.png" width="320px" height="480px" alt="Rune Words" /><br />
<span id="more-349"></span><img src="http://lazyer.net/wp-content/uploads/2011/09/RuneWords2.png" alt="Rune Words" width="320px" height="480px" /><img src="http://lazyer.net/wp-content/uploads/2011/09/RuneWords3.png" alt="Rune Words" width="320px" height="480px" /></p>
]]></content:encoded>
			<wfw:commentRss>http://lazyer.net/runeword/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gobang Pro</title>
		<link>http://lazyer.net/gobang-pro</link>
		<comments>http://lazyer.net/gobang-pro#comments</comments>
		<pubDate>Tue, 16 Aug 2011 13:12:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://lazyer.net/?p=337</guid>
		<description><![CDATA[Gobang,also known as GoMoku or 5-in-a-Row, is a traditional oriental game played with black and white stones on a GO board. It is a simple game, more like Tic-Tac-Toe than GO. It&#8217;s relation to GO is similar to that of Checkers to Chess. ==================================== Feature: * Easy to play * Nice Graphics * Different themes [...]]]></description>
			<content:encoded><![CDATA[<p>Gobang,also known as GoMoku or 5-in-a-Row, is a traditional oriental game played with black and white stones on a GO board.<br />
It is a simple game, more like Tic-Tac-Toe than GO. It&#8217;s relation to GO is similar to that of Checkers to Chess.<br />
====================================<br />
Feature:<br />
* Easy to play<br />
* Nice Graphics<br />
* Different themes<br />
====================================<br />
<img src="http://lazyer.net/wp-content/uploads/2011/08/GobangPro1.png" alt="Gobang Pro" /><br />
<span id="more-337"></span><br />
<img src="http://lazyer.net/wp-content/uploads/2011/08/GobangPro2.png" alt="Gobang Pro" /><img src="http://lazyer.net/wp-content/uploads/2011/08/GobangPro3.png" alt="Gobang Pro" /></p>
]]></content:encoded>
			<wfw:commentRss>http://lazyer.net/gobang-pro/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
