war3地图编辑器教程 DebugS

随笔 - 132&
文章 - 51&
trackbacks - 0
2425262728293014589101314161719212223242526272829301234
NB的代码下载网站
教程很详细
可以使用赋值开发工具RenderMonkey
阅读排行榜
评论排行榜
原文地址:
1 : 首先 是 构建 世界 ,即b2World 你也可能用到 debug 调试:GLESDebugDraw
gravity.Set(0.0f, -9.8f);
_world&=&new&b2World(gravity,&true);
构建 需要两个参数 ,第一个为 世界中 的重力 参数,这里设置为:-9.8f,第二个参数为 是否设置 没有碰撞的物体处于 休眠状态
下面的代码是需要调试时用到了,
GLESDebugDraw&*_
//---------------
_render =&new&GLESDebugDraw([Box2DHelper pointsPerMeter]);
_world-&SetDebugDraw(_render);
uint32 flags =&0;
flags += b2Draw::e_shapeB
_render-&SetFlags(flags);
上面代码一般会放在 下面代码之间,
#ifdef DRAW_BOX2D_WORLD
意思是说如果 你定义了DRAW_BOX2D_WORLD 便执行 里面 的代码,如果没有定义则不执行
#define DRAW_BOX2D_WORLD
////-----------------------
#ifdef DRAW_BOX2D_WORLD
_render=newGLESDebugDraw(1/32.0);
_world-&SetDebugDraw(_render);
uint32 flags =&0;
flags += b2Draw::e_shapeB
_render-&SetFlags(flags);
到目前为止 就已经定义了 box2d 的虚拟事件
为世界 创建 边界 ,即 别让 物体走出屏幕之外就行了
b2BodyDef groundBodyD&
groundBodyDef.position.Set (0, 0); // 左下觊// 创建物体对象b2Body* groundBody = world-&CreateBody(&groundBodyDef);// 定丿大地的几何尺寸,本例就是 4 条边。
&b2PolygonShape groundB// 设定“下边”坐标,创建返条线groundB ox.Se tAsEdge(b2Vec2(0,0),b2Vec2(scree nSize.width/PT M_RAT IO,0) );&
groundBody-&CreateFixture( &groundBox ,0);//设定“上边”坐标,创建返条线groundBox.SetAsEdge(b2Vec2 (0,screenSize.height /PTM_ RATIO),b2Vec2( screenSize.width/PT M_RATIO,screenSize.height /PTM_ RATIO ));&
groundBody-& Creat eFixture( &groundBox ,0);//设定“左边”坐标,创建返条线
groundBox.Se tAsEdge(b2Vec2(0,screenSize.height /PTM_ RATIO),b2Vec2(0,0)) ;groundBody-&CreateFixture(&groundBox,0);
//设定“史边”坐标,创建返条线groundBox.SetAsEdge(b2Vec2 (screenSize.width/PT M_RAT IO,screenSize.height/ PTM_RATIO) ,b2Vec2( screenSize width/PTM_RATI O,0)) ;groundBody-&CreateFixture(&groundBox ,0);&
这里顺便要说一下 的是PTM_RATIO &,这个数一般定义为: 32.0,在box 世界中 是以 米 为单位的,这里是将坐标兑换为box世界中的米,即除以&PTM_RATIO
2:创建 世界中主角人物 ,
b2Body &* _
b2BodyDef&
bd.type&=&b2_dynamicB//
bd.linearDamping&=&0.05f;
bd.fixedRotation&=&
// start position
CGPoint&p =&ccp(0,&_game.screenH/2+_radius);
CCLOG(@"start position = %f, %f", p.x, p.y);
bd.position.Set(p.x&* [Box2DHelper&metersPerPoint], p.y&* [Box2DHelper&metersPerPoint]);//此为设置物体的坐标,
_body&=&_game.world-&CreateBody(&bd);
b2CircleShape&//设置 形状,次为 圆形
shape.m_radius&=&_radius&* 1/32.0;
b2FixtureDef&//
fd.shape&= &
fd.density&=&0.3f;//质量
fd.restitution&=&0;&// bounce
fd.friction&=&0;//不反弹,最大为 1&
_body-&CreateFixture(&fd);
1)静态物体(b2_staticBody)。质量为 0,丌可以秱劢,通帪模拟我们游戏的物理边& 界:大地、墙壁等。2)平台物体(b2_kinematicBody)。按照固定路线运劢的物体,比如说电梯,运劢的& 滚梯,运行的火车等等。3)动态物体(b2_dynamicBody)。我们最帪见的精灵对象对应的物体。
接下来创建 金币 道具
CGPoint&setPoint=ccp(position.x/2&, (position.y+20)/2&);
&&&CCSprite&* sprite =[CCSprite&spriteWithFile:@"collect_number1.png"];
& & sprite.position=ccp(setPoint.x, setPoint.y);
& & sprite.tag=200;
& & [self&addChild:sprite];
& &&b2BodyDef&testBodyD
& & testBodyDef.type&=&b2_staticB
& & testBodyDef.userData=
& & testBodyDef.position.Set(setPoint.x/PTM_RATIO, (setPoint.y)/PTM_RATIO); & &
& &&b2Body&* testBody =&world-&CreateBody(&testBodyDef);
& &&b2CircleShape&testBodyS
& &&b2FixtureDef&testFixtureD
& & testBodyShape.m_radius&=5.0/PTM_RATIO;
& & testFixtureDef.isSensor=YES;
& & testFixtureDef.shape&=&testBodyS
& & testBody-&CreateFixture(&testFixtureDef);
这里 需要说 的是&isSensor 属性 ,如果你想让物体检测到碰撞,但没有碰撞效果(没有反弹效果),就将&isSensor 设置为 YES ,
好了,现在说一下 重点 ,碰撞问题&下面我实现的 碰撞监听 类
#import&"Box2D.h"
#import&&vector&
#import&&algorithm&
#define kMaxAngleDiff&2.4f&// in radians
struct&MyContact {
& &&b2Fixture&*fixtureA;
& &&b2Fixture&*fixtureB;
& &&bool&operator==(const&MyContact& other)&const
& & & &&return&(fixtureA&== other.fixtureA) && (fixtureB&== other.fixtureB);
class&HeroContactListener :&public&b2ContactListener&{
& &&std::vector&MyContact&_
HeroContactListener(Hero* hero);
~HeroContactListener();
void&BeginContact(b2Contact* contact);
void&EndContact(b2Contact* contact);
void&PreSolve(b2Contact* contact,&const&b2Manifold* oldManifold);
void&PostSolve(b2Contact* contact,&const&b2ContactImpulse* impulse);
实现 监听 一定要继承b2ContactListener ,并实现其方法,然后 在 _world 世界中添加 监听 就可以了
.mm文件中的 内容为:
#import&"HeroContactListener.h"
#import&"Hero.h"
#import&"GameConfig.h"
HeroContactListener::HeroContactListener(Hero* hero) {
_hero&= [hero&retain];
HeroContactListener::~HeroContactListener() {
[_hero&release];
void&HeroContactListener::BeginContact(b2Contact* contact) {
//在这里 检测碰撞 &金币
& &&CCSprite&* sprite=(CCSprite&*)contact-&GetFixtureA()-&GetBody()-&GetUserData();
& &&if&(sprite !=NULL) {
& &&MyContact&myContact = { contact-&GetFixtureA(), contact-&GetFixtureB() };
& &&_contacts.push_back(myContact);
void&HeroContactListener::EndContact(b2Contact* contact) {
& &&MyContact&myContact = { contact-&GetFixtureA(), contact-&GetFixtureB() };
& &&std::vector&MyContact&::iterator&
& & pos =&std::find(_contacts.begin(),&_contacts.end(), myContact);
& &&if&(pos !=&_contacts.end()) {
& & & &&_contacts.erase(pos);
void&HeroContactListener::PreSolve(b2Contact* contact,&const&b2Manifold* oldManifold) {
b2WorldManifold&
contact-&GetWorldManifold(&wm);
b2PointState&state1[2], state2[2];
b2GetPointStates(state1, state2, oldManifold, contact-&GetManifold());
if&(state2[0] ==&b2_addState) {
const&b2Body&*b = contact-&GetFixtureB()-&GetBody();
b2Vec2&vel = b-&GetLinearVelocity();
float&va =&atan2f(vel.y, vel.x);
float&na =&atan2f(wm.normal.y, wm.normal.x);
if&(na - va &&kMaxAngleDiff) {
[_hero&hit];
void&HeroContactListener::PostSolve(b2Contact* contact,&const&b2ContactImpulse* impulse) {
在这里 需要说的是在 监听中不能 删除 碰撞物体
循环 执行 次方法 &&[self&schedule:@selector(tick:)];
-(void)tick:(ccTime)time{
& &&// Loop through all of the box2d bodies that are currently colliding, that we have
& &&// gathered with our custom contact listener...
& &&std::vector&b2Body&*&toD&
& &&std::vector&MyContact&::iterator&
& &&for(pos =&_contactListener-&_contacts.begin(); pos !=&_contactListener-&_contacts.end(); ++pos) {
& & & &&MyContact&contact = *
& & & &&// Get the box2d bodies for each object
& & & &&b2Body&*bodyA = contact.fixtureA-&GetBody();
& & & &&if&(bodyA-&GetUserData() !=&NULL) {
& & & & & &&CCSprite&*spriteA = (CCSprite&*) bodyA-&GetUserData();
&& & & & & &
& & & & & &&// Is sprite A a cat and sprite B a car?& If so, push the cat on a list to be destroyed...
& & & & & &&if&(spriteA.tag&==&200) {
& & & & & & & & toDestroy.push_back(bodyA);
& & & & & & & &&//播放&碰撞&道具&声音
&& & & & & & & & [[SimpleAudioEngine&sharedEngine]&playEffect:GetJinBiSound];
&& & & & & & & &&NSLog(@"碰到一个&金币&。。。。。");
& & & & & & & & [GameDate&shareGameDate].jinBiNumber++;
& & & & & & & &&_game.jinBiLabel.string=[NSString&stringWithFormat:@"%d",[GameDate&shareGameDate].jinBiNumber];
& & & & & & }&
& & & & & &&// Is sprite A a car and sprite B a cat?& If so, push the cat on a list to be destroyed...
& & & & } & & & &
& &&// Loop through all of the box2d bodies we wnat to destroy...
& &&std::vector&b2Body&*&::iterator&pos2;
& &&for(pos2 = toDestroy.begin(); pos2 != toDestroy.end(); ++pos2) {
& & & &&b2Body&*body = *pos2;& & &
& & & &&// See if there's any user data attached to the Box2D body
& & & &&// There should be, since we set it in addBoxBodyForSprite
& & & &&if&(body-&GetUserData() !=&NULL) {
& & & & & &&// We know that the user data is a sprite since we set
& & & & & &&// it that way, so cast it...
& & & & & &&CCSprite&*sprite = (CCSprite&*) body-&GetUserData();
& & & & & &&// Remove the sprite from the scene
& & & & & & [sprite&removeFromParentAndCleanup:YES];
& & & &&// Destroy the Box2D body as well
& & & &&_game.world-&DestroyBody(body);
这样 当box 世界中 发生碰撞了,就会监听到,并可以 删除掉 碰撞的金币精灵 和 对应的 box世界中物体
最后 就是用 在世界中添加监听了
_contactListener&=&new&HeroContactListener(self);
_game.world-&SetContactListener(_contactListener);
这样便添加了碰撞 监听了
阅读(2016)game_map_edit MFC 开发的一款 45度角游戏地图编辑器的框架。 Program
238万源代码下载-
&文件名称: game_map_edit
& & & & &&]
&&所属分类:
&&开发工具: Visual C++
&&文件大小: 11760 KB
&&上传时间:
&&下载次数: 75
&&提 供 者:
&详细说明:MFC 开发的一款 45度角游戏地图编辑器的框架。-MFC development of a 45-degree angle to the game map editor framework.
文件列表(点击判断是否您需要的文件,如果是垃圾请在下面评价投诉):
&&game_map_edit\DialogBaseSet.cpp&&.............\DialogBaseSet.h&&.............\DialogImage.h&&.............\DialogMain.cpp&&.............\DialogMain.h&&.............\DialogNewMap.cpp&&.............\DialogNewMap.h&&.............\game_map_edit.clw&&.............\game_map_edit.cpp&&.............\game_map_edit.dsp&&.............\game_map_edit.dsw&&.............\game_map_edit.h&&.............\game_map_edit.opt&&.............\game_map_edit.plg&&.............\Listable.cpp&&.............\Listable.h&&.............\MeListCtrl.cpp&&.............\MeListCtrl.h&&.............\ReadMe.txt&&.............\res\game_map_edit.ico&&.............\...\game_map_edit.rc2&&.............\resource.h&&.............\StdAfx.cpp&&.............\StdAfx.h&&.............\TileEdit.cpp&&.............\TileEdit.h&&.............\_M.H&&.............\_S.H&&.............\game_map_edit.ncb&&.............\game_map_edit.suo&&.............\game_map_edit.vcproj&&.............\game_map_edit.sln&&.............\game_map_edit.vcproj.11A1B9A0ADC44E8.Administrator.user&&.............\Debug\BuildLog.htm&&.............\.....\game_map_edit.exe.embed.manifest&&.............\.....\vc80.idb&&.............\.....\game_map_edit.pch&&.............\.....\vc80.pdb&&.............\.....\StdAfx.sbr&&.............\.....\StdAfx.obj&&.............\.....\DialogBaseSet.sbr&&.............\.....\DialogImage.sbr&&.............\.....\DialogMain.sbr&&.............\.....\DialogNewMap.sbr&&.............\.....\game_map_edit.sbr&&.............\.....\Listable.sbr&&.............\.....\MeListCtrl.sbr&&.............\.....\MeListCtrl.obj&&.............\.....\Listable.obj&&.............\.....\game_map_edit.obj&&.............\.....\DialogNewMap.obj&&.............\.....\DialogMain.obj&&.............\.....\DialogBaseSet.obj&&.............\.....\game_map_edit.bsc&&.............\.....\game_map_edit.res&&.............\.....\game_map_edit.exe.embed.manifest.res&&.............\.....\game_map_edit.ilk&&.............\.....\game_map_edit.exe&&.............\.....\game_map_edit.pdb&&.............\.....\game_map_edit.exe.intermediate.manifest&&.............\.....\mt.dep&&.............\.....\DialogImage.obj&&.............\game_map_edit.aps&&.............\game_map_edit.rc&&.............\DialogImage.cpp&&.............\res&&.............\Release&&.............\Debug&&game_map_edit
&相关搜索:
&输入关键字,在本站238万海量源码库中尽情搜索:
&[] - 一个2D游戏框架,很全面。包括图形、声音等等。还有几个演示例子。
&[] - 网游绝对女神原码下载加所有完整资源,包括客户端,工具等等,由于太大,我把下载地址打包给大家,保证无毒,放心下,资源非常棒
&[] - 跨平台C++网络游戏,永恒大陆(eternal land)的源代码,vc下编译可以通过
&[] - map editer地图编辑器,只完成基本功能
&[] - 这是我闲时无聊写的小游戏,完整的win32 GDI游戏教学。对新手很有用。包括游戏和地图编辑器。还有已经制作好的8个关卡地图文件。
&[] - 3D 游戏界的大牛人 John Carmack 终于放出了 Q3 的源代码,。希望对有志于 3D game 的朋友带来更多帮助
代码结构很清晰.3D 游戏界的大牛人 John Carmack 终于放出了 Q3 的源代码,。希望对有志于 3D game 的朋友带来更多帮助
代码结构很清晰.
&[] - 读取征途游戏的地图,显示能通过的区域,可以用来做自动寻路
&[] - 游戏源代码,喜欢游戏开发的可以看看,请用vc编译
&[] - HGE 引擎开发 海星 大战。。非常棒的游戏。策略游戏,采用了脚本。
&[] - 由于刚开始接触XML时要么遇到编译错误,要么API太复杂,因此封装一个MS XML的类,接口见XMLMake.h和XMLParse.h文件,内附说明和Demo代码[prop] => 2
[debug] => 1prop=2
[p_pic] => Array
[0] => /img/57/81/ebd29e9e78de7c000002.jpg
[1] => /img/57/79/fd219e9e781c7c00000b.jpg
[2] => /img/57/81/ebbf9e9e.jpg
[3] => /img/57/7e/a54d000001.jpg
[4] => /img/57/73/378d9e9e.jpg
[p_id] => Array
[0] => 263152
[1] => 264300
[2] => 262888
[3] => 265102
[4] => 262649
[p_link] => Array
[0] => /article/263152
[1] => /article/264300
[2] => /article/262888
[3] => /article/265102
[4] => /article/262649
[p_title] => Array
[0] => 需要另类的刺激才能有乐趣!盘点另类恐怖游戏
[1] => 内涵囧图Vol.187 乳不平何以平天下 没时间解释了快上车!
[2] => 错一步错千里!盘点游戏史上失败的重大决策
[3] => 逗游游戏讲堂No.9:游戏工作室该不该禁止?
[4] => 内涵囧图Vol.186 夏天就得啪啪啪不然难受
[p__id] => Array
[0] => MongoId Object
[$id] => 5770dcae9e9e78b25a00001b
[1] => MongoId Object
[$id] => e9e
[2] => MongoId Object
[$id] => 576fc3a000000
[3] => MongoId Object
[$id] => 577e2ed49e9e
[n0_pic] => Array
[n0_id] => Array
[n0_link] => Array
[n0_title] => Array
[p_pic] => Array
[0] => /img/57/81/ebd29e9e78de7c000002.jpg
[1] => /img/57/79/fd219e9e781c7c00000b.jpg
[2] => /img/57/81/ebbf9e9e.jpg
[3] => /img/57/7e/a54d000001.jpg
[4] => /img/57/73/378d9e9e.jpg
[p_id] => Array
[0] => 263152
[1] => 264300
[2] => 262888
[3] => 265102
[4] => 262649
[p_link] => Array
[0] => /article/263152
[1] => /article/264300
[2] => /article/262888
[3] => /article/265102
[4] => /article/262649
[p_title] => Array
[0] => 需要另类的刺激才能有乐趣!盘点另类恐怖游戏
[1] => 内涵囧图Vol.187 乳不平何以平天下 没时间解释了快上车!
[2] => 错一步错千里!盘点游戏史上失败的重大决策
[3] => 逗游游戏讲堂No.9:游戏工作室该不该禁止?
[4] => 内涵囧图Vol.186 夏天就得啪啪啪不然难受
[p__id] => Array
[0] => MongoId Object
[$id] => 5770dcae9e9e78b25a00001b
[1] => MongoId Object
[$id] => e9e
[2] => MongoId Object
[$id] => 576fc3a000000
[3] => MongoId Object
[$id] => 577e2ed49e9e
[article_public_1_p_area] => Array
[p_pic] => Array
[0] => /img/57/81/ebd29e9e78de7c000002.jpg
[1] => /img/57/79/fd219e9e781c7c00000b.jpg
[2] => /img/57/81/ebbf9e9e.jpg
[3] => /img/57/7e/a54d000001.jpg
[4] => /img/57/73/378d9e9e.jpg
[p_id] => Array
[0] => 263152
[1] => 264300
[2] => 262888
[3] => 265102
[4] => 262649
[p_link] => Array
[0] => /article/263152
[1] => /article/264300
[2] => /article/262888
[3] => /article/265102
[4] => /article/262649
[p_title] => Array
[0] => 需要另类的刺激才能有乐趣!盘点另类恐怖游戏
[1] => 内涵囧图Vol.187 乳不平何以平天下 没时间解释了快上车!
[2] => 错一步错千里!盘点游戏史上失败的重大决策
[3] => 逗游游戏讲堂No.9:游戏工作室该不该禁止?
[4] => 内涵囧图Vol.186 夏天就得啪啪啪不然难受
[p__id] => Array
[0] => MongoId Object
[$id] => 5770dcae9e9e78b25a00001b
[1] => MongoId Object
[$id] => e9e
[2] => MongoId Object
[$id] => 576fc3a000000
[3] => MongoId Object
[$id] => 577e2ed49e9e
[article_public_1_n0_area] => Array
[n0_pic] => Array
[n0_id] => Array
[n0_link] => Array
[n0_title] => Array
[article_public_1_n1_area] => Array
[n1_pic] => Array
[n1_id] => Array
[n1_link] => Array
[n1_title] => Array
[article_public_1_n2_area] => Array
[n2_pic] => Array
[n2_id] => Array
[n2_link] => Array
[n2_title] => Array
[article_public_1_n3_area] => Array
[n3_pic] => Array
[n3_id] => Array
[n3_link] => Array
[n3_title] => Array
[article_public_1_n4_area] => Array
[n4_pic] => Array
[n4_id] => Array
[n4_link] => Array
[n4_title] => Array
[article_public_1_n5_area] => Array
[n5_pic] => Array
[n5_id] => Array
[n5_link] => Array
[n5_title] => Array
[article_public_1_n6_area] => Array
[n6_pic] => Array
[n6_id] => Array
[n6_link] => Array
[n6_title] => Array
[article_public_2_w_area] => Array
[w_id] => Array
[w_link] => Array
[w_title] => Array
[article_public_2_m_area] => Array
[m_id] => Array
[m_link] => Array
[m_title] => Array
[article_public_3_p_area] => Array
[p_id] => Array
[0] => 6507
[1] => 6496
[2] => 6480
[3] => 6471
[p_pic] => Array
[0] => /img/57/7f/d.jpg
[1] => /img/57/7f/b.jpg
[2] => /img/57/75/dd469e9e.jpg
[3] => /img/57/6c/a88f9e9e784d.jpg
[p_title] => Array
[0] => 守望先锋Cosplay大合集
[1] => 高清美女图片精选第六期
[2] => 高清美女图片精选第五期
[3] => Cosplay大师美图欣赏
[p_link] => Array
[0] => /picture/6507
[1] => /picture/6496
[2] => /picture/6480
[3] => /picture/6471
[p__id] => Array
[0] => MongoId Object
[$id] => 577fcb
[1] => MongoId Object
[$id] => 577b11b09e9e78c
[2] => MongoId Object
[$id] => 5771daf39e9e784c1b000178
[3] => MongoId Object
[$id] => 576b41c49e9e78f
[article_public_4_w_area] => Array
[w_id] => Array
[w_link] => Array
[w_title] => Array
[article_public_4_m_area] => Array
[m_id] => Array
[m_link] => Array
[m_title] => Array
[article_public_5_p_area] => Array
[p_id] => Array
[0] => 265075
[1] => 264300
[2] => 258818
[3] => 258627
[4] => 256139
[5] => 256134
[p_pic] => Array
[0] => /img/57/7e/55e00000d.jpg
[1] => /img/57/78/f5ef9e9e.jpg
[2] => /img/57/54/dae19e9e78ac.jpg
[3] => /img/57/4d/7d139e9e784c0b0000ac.jpg
[4] => /img/57/39/8ff69e9ea.jpg
[5] => /img/57/39/904e9e9e78ac.jpg
[p_title] => Array
[0] => 内涵囧图Vol.188 睡我上铺的妹子去哪了?
[1] => 内涵囧图Vol.187 乳不平何以平天下 没时间解释了快上车!
[2] => 内涵囧图Vol.181 刘皇叔你想X我?
[3] => 内涵囧图Vol.180 来吧我已经迫不及待了
[4] => 内涵囧图Vol.174 黑寡妇的全套装备
[5] => 内涵囧图Vol.172 看看我浴室的女朋友
[p_link] => Array
[0] => /article/265075
[1] => /article/264300
[2] => /article/258818
[3] => /article/258627
[4] => /article/256139
[5] => /article/256134
[p__id] => Array
[0] => MongoId Object
[$id] => 577e1ec69e9e
[1] => MongoId Object
[$id] => e9e
[2] => MongoId Object
[$id] => 574ce1d59e9e78bb
[3] => MongoId Object
[$id] => 574a8f979e9ea
[4] => MongoId Object
[$id] => e
[5] => MongoId Object
[$id] => e9e
[article_public_5_w_area] => Array
[w_id] => Array
[0] => 262649
[1] => 258829
[2] => 258828
[3] => 258824
[4] => 258820
[5] => 257939
[6] => 257924
[7] => 257901
[8] => 257900
[9] => 257712
[10] => 256126
[11] => 256119
[12] => 256106
[13] => 256098
[14] => 255917
[w_title] => Array
[0] => 内涵囧图Vol.186 夏天就得啪啪啪不然难受的囧图
[1] => 内涵囧图Vol.185 当一群妹子跟你游泳
[2] => 内涵囧图Vol.184 妹子抢走了宅男的女朋友
[3] => 内涵囧图Vol.183 脱毛机的失控
[4] => 内涵囧图Vol.182 当女神要来你家时
[5] => 内涵囧图Vol.178 妹子竟约我做这种事
[6] => 内涵囧图Vol.179 未满18岁谢绝入内
[7] => 内涵囧图Vol.177 姿势逆天的动态囧图
[8] => 内涵囧图Vol.176 最养眼的妹纸动态图
[9] => 内涵囧图Vol.175 激情诱惑的夏日又到了
[10] => 内涵囧图Vol.173 妹子不要放弃治疗
[11] => 内涵囧图Vol.171 宅男你们啊都废了
[12] => 内涵囧图Vol.170 一脸心机的内涵囧图
[13] => 内涵囧图Vol.169 闺蜜比你漂亮怎么办
[14] => 内涵囧图Vol.168 周末福利内涵图大赏
[w_link] => Array
[0] => /article/262649
[1] => /article/258829
[2] => /article/258828
[3] => /article/258824
[4] => /article/258820
[5] => /article/257939
[6] => /article/257924
[7] => /article/257901
[8] => /article/257900
[9] => /article/257712
[10] => /article/256126
[11] => /article/256119
[12] => /article/256106
[13] => /article/256098
[14] => /article/255917
[w__id] => Array
[0] => MongoId Object
[$id] => 576d0fe49e9e
[1] => MongoId Object
[$id] => 574cee6a9e9e78ca
[2] => MongoId Object
[$id] => 574ceb879e9e78ce
[3] => MongoId Object
[$id] => 574cec
[4] => MongoId Object
[$id] => 574cec
[5] => MongoId Object
[$id] => e9e781e2800001b
[6] => MongoId Object
[$id] => 5ea1
[7] => MongoId Object
[$id] => e9e
[8] => MongoId Object
[$id] => e781a
[9] => MongoId Object
[$id] => e78f
[10] => MongoId Object
[$id] => e9e781e7c00003d
[11] => MongoId Object
[$id] => e9eb
[12] => MongoId Object
[$id] => 57393afc9e9e788b1600004a
[13] => MongoId Object
[$id] => e9e782a7c000018
[14] => MongoId Object
[$id] => e
[article_public_6_area] => Array
[pic] => Array
[0] => /img/57/6d/09bf9e9e.jpg
[1] => /img/57/6d/09df9e9e.jpg
[2] => /img/57/4e/774c9e9e784c.jpg
[3] => /img/53/4e/7ab49e9e78b34c000003.jpg
[title] => Array
[0] => 最火热的丧尸系列 行尸走肉合集
[1] => 世界上最全我的世界合集大全
[2] => GTA侠盗猎车手系列专题
[3] => 经典街机游戏专题
[link] => Array
[0] => /special/279
[1] => /special/278
[2] => /special/274
[3] => /zt/jieji/
[article_public_7_area] => Array
[id] => Array
[0] => 262888
[1] => 263152
[2] => 262733
[3] => 263067
[4] => 264300
[5] => 262222
[6] => 265102
[7] => 262717
[8] => 262391
[9] => 262649
[10] => 260151
[11] => 261484
[12] => 208242
[13] => 261357
[14] => 259758
[15] => 258829
[16] => 258828
[17] => 259262
[18] => 260935
[19] => 260027
[20] => 259447
[21] => 259204
[22] => 258824
[23] => 259092
[24] => 258820
[25] => 260001
[26] => 258100
[27] => 258627
[28] => 258648
[29] => 257924
[pic] => Array
[0] => /img/57/81/ec049e9e78c17c000003.jpg
[1] => /img/57/81/ec1b9e9e78a67c000001.jpg
[2] => /img/57/7e/fe7f9e9e78db.jpg
[3] => /img/57/7e/fe899e9e78c.jpg
[4] => /img/57/79/fd919e9e78f97b00000e.jpg
[5] => /img/57/79/fda59e9e781d7c00000b.jpg
[6] => /img/57/7e/320c9e9e78cd4d000001.jpg
[7] => /img/57/75/cae39e9e.jpg
[8] => /img/57/75/cafc9e9e.jpg
[9] => /img/57/73/37f79e9e780b0a00000e.jpg
[10] => /img/57/6b/bd7e9e9e78a37c000012.jpg
[11] => /img/57/70/8bd79e9e788d.jpg
[12] => /img/57/73/37e89e9e.jpg
[13] => /img/57/6b/bd5a9e9e78aa7c000013.jpg
[14] => /img/57/65/0cf59e9ea.jpg
[15] => /img/57/6b/bd3a9e9e780e7d00001a.jpg
[16] => /img/57/63/4a0d9e9e78de3200000f.jpg
[17] => /img/57/63/4a369e9e78e.jpg
[18] => /img/57/62/799f9e9e.jpg
[19] => /img/57/5f/5fa89e9e782c.jpg
[20] => /img/57/57/dc8a9e9e781f2a00001b.jpg
[21] => /img/57/5c/dcf.jpg
[22] => /img/57/5d/17fa9e9e78be.jpg
[23] => /img/57/5c/d00a9e9e784d.jpg
[24] => /img/57/57/dc249e9e78ea.jpg
[25] => /img/57/5c/def7f00000c.jpg
[26] => /img/57/55/0a5d9e9e78a85d000027.jpg
[27] => /img/57/4e/77d59e9e781d4400000a.jpg
[28] => /img/57/50/f9a39e9eb.jpg
[29] => /img/57/55/.jpg
[title] => Array
[0] => 错一步错千里!盘点游戏史上失败的重大决策
[1] => 需要另类的刺激才能有乐趣!盘点另类恐怖游戏
[2] => 第一感重要?盘点媒体玩家评分差距较大的游戏
[3] => 看欧洲杯不如自己参与其中 盘点精彩足球手游
[4] => 内涵囧图Vol.187 乳不平何以平天下 没时间解释了快上车!
[5] => 无时无刻给你挫败感!盘点最让玩家厌烦的怪物
[6] => 逗游游戏讲堂No.9:游戏工作室该不该禁止?
[7] => 一起排排坐吃果果 盘点今年夏季清新上架手游
[8] => 把你虐得怀疑人生!盘点破坏平衡的逆天级武器
[9] => 内涵囧图Vol.186 夏天就得啪啪啪不然难受
[10] => 越来越烂 盘点2016有机会成为佳作的烂作续集
[11] => 总有一款让你重温感动!盘点业界怀旧精品游戏
[12] => 《血源诅咒》上手指南!十大重要游戏提示分享
[13] => 世间万物皆可萌!盘点热门手游中的萌娘类游戏
[14] => 巴啦啦魔法快下一波奶瓶雨!盘点六月可爱手游
[15] => 内涵囧图Vol.185 当一群妹子跟你游泳
[16] => 内涵囧图Vol.184 妹子抢走了宅男的女朋友
[17] => 担任CEO赢取白富美 回顾大富翁类型休闲手游
[18] => 逗游游戏讲堂No.8:游戏何以改变人生?
[19] => 票房映证脑残威力 盘点最受欢迎电影改编游戏
[20] => 视觉体验是第一步!盘点10款顶级宣传片游戏
[21] => 每个都特别 盘点PS4最糟糕到最棒的游戏(下)
[22] => 内涵囧图Vol.183 脱毛机的失控
[23] => 天高任鸟飞!浅析开放世界游戏自由感实现方式
[24] => 内涵囧图Vol.182 当女神要来你家时
[25] => 在端午节后缅怀历史!盘点8款具有历史感的游戏
[26] => 步步引你上钩 盘点开发商常用的吸引玩家手段
[27] => 内涵囧图Vol.180 来吧!我已经迫不及待了
[28] => 无聊快来打飞机!盘点biubiubiu飞行射击手游
[29] => 内涵囧图Vol.179 未满18岁谢绝入内
[link] => Array
[0] => /article/262888
[1] => /article/263152
[2] => /article/262733
[3] => /article/263067
[4] => /article/264300
[5] => /article/262222
[6] => /article/265102
[7] => /article/262717
[8] => /article/262391
[9] => /article/262649
[10] => /article/260151
[11] => /article/261484
[12] => /article/208242
[13] => /article/261357
[14] => /article/259758
[15] => /article/258829
[16] => /article/258828
[17] => /article/259262
[18] => /article/260935
[19] => /article/260027
[20] => /article/259447
[21] => /article/259204
[22] => /article/258824
[23] => /article/259092
[24] => /article/258820
[25] => /article/260001
[26] => /article/258100
[27] => /article/258627
[28] => /article/258648
[29] => /article/257924
[_id] => Array
[0] => MongoId Object
[$id] => 576fc3a000000
[1] => MongoId Object
[$id] => 5770dcae9e9e78b25a00001b
[2] => MongoId Object
[$id] => 576deb729e9e787f
[3] => MongoId Object
[$id] => e9e783b2f000000
[4] => MongoId Object
[$id] => e9e
[5] => MongoId Object
[$id] => 576bfa7b000002
[6] => MongoId Object
[$id] => 577e2ed49e9e
[7] => MongoId Object
[$id] => 576dbd959e9ea
[8] => MongoId Object
[$id] => 576bfef09e9e
[9] => MongoId Object
[$id] => 576d0fe49e9e
[10] => MongoId Object
[$id] => 575d304d9e9e780b6700001a
[11] => MongoId Object
[$id] => 5e786f
[12] => MongoId Object
[$id] => e
[13] => MongoId Object
[$id] => e9e781f5500000e
[14] => MongoId Object
[$id] => e78b32c000014
[15] => MongoId Object
[$id] => 574cee6a9e9e78ca
[16] => MongoId Object
[$id] => 574ceb879e9e78ce
[17] => MongoId Object
[$id] => 574fb0d69e9e78af
[18] => MongoId Object
[$id] => e9e786b3c000048
[19] => MongoId Object
[$id] => e
[20] => MongoId Object
[$id] => e9e
[21] => MongoId Object
[$id] => 574ef7a89e9e78ff
[22] => MongoId Object
[$id] => 574cec
[23] => MongoId Object
[$id] => 574e1c8c9e9e785e7c000008
[article_public_8_area] => Array
[id] => Array
[0] => 257847
[1] => 261831
[2] => 259224
[3] => 259467
[4] => 257318
[5] => 261012
[6] => 261534
[7] => 255676
[8] => 256227
[9] => 263081
[10] => 262430
[11] => 261024
[12] => 259177
[13] => 258163
[14] => 257314
[15] => 263300
[16] => 260358
[17] => 258814
[18] => 260352
[19] => 256665
[20] => 260526
[21] => 264684
[22] => 256133
[23] => 255777
[pic] => Array
[0] => /img/57/44/1ebb9e9e786a.jpg
[1] => /img/57/69/16b79e9e788f.jpg
[2] => /img/57/4f/8c639e9e78f.jpg
[3] => /img/57/50/e6be9e9e.jpg
[4] => /img/57/42/5b699e9e.jpg
[5] => /img/57/63/4a269e9e78d.jpg
[6] => /img/57/67/c.jpg
[7] => /img/57/33/dd769e9ee.jpg
[8] => /img/57/3a/72a19e9e78f23f00000a.jpg
[9] => /img/57/70/816c9e9e788b3400000c.jpg
[10] => /img/57/6c/a1c99e9e.jpg
[11] => /img/57/63/50a69e9e78e.jpg
[12] => /img/57/4e/93de9e9e78c.png
[13] => /img/57/46/4f249e9e78dd7200000b.jpg
[14] => /img/57/42/56d59e9e.jpg
[15] => /img/57/71/dd.jpg
[16] => /img/57/5f/69b09e9e78db.jpg
[17] => /img/57/4c/df509e9e78c.jpg
[18] => /img/57/5f/62a09e9e78b.jpg
[19] => /img/57/3b/dc4f9e9e78b17a00003a.jpg
[20] => /img/57/60/b2c19e9e.jpg
[21] => /img/57/7c/ad3f000009.jpg
[22] => /img/57/39/6c339e9e78ac.jpg
[23] => /img/57/34/1b049e9ed1.jpg
[title] => Array
[0] => 2016年6月PC单机重点游戏前瞻 颇有回暖之势!
[1] => 2016年7月PC单机重点游戏前瞻 解谜类玩家福音
[2] => 《幽灵行动:荒野》全地图演示视频 游戏环境丰富
[3] => 《死亡岛》PC原版和终极版画面对比!提升巨大
[4] => 《看门狗》迎来超赞画质MOD 完美重现缩水前画面
[5] => 《星球大战:前线》DLC贝斯平介绍 卡利森登场
[6] => 《消逝的光芒》增强版画面对比 丧尸看起来更恐怖
[7] => 《国土防线2:革命》剧情介绍出炉 反派大佬露面
[8] => 兄弟的爱恨情仇!《守望先锋》新视频“双龙”
[9] => 超赞!《上古卷轴5》剧情MOD“Enderal”宣传片
[10] => 《甲铁城的卡巴内瑞》最终回预告 无名要被献祭?
[11] => E3 2016:11分钟《狙击精英4》实机游戏内容展示
[12] => 《巫师3:血与酒》PC高低画质对比 肉眼难辨区别
[13] => 中国古风BGM好评 《文明6》首部游戏实机视频演示
[14] => 76号惩奸除恶!《守望先锋》动画片“英雄”出炉
[15] => 科技与魔法的乱战!《机械巫师》发售宣传片出炉
[16] => E3 2016:《骑马与砍杀2》新视频 城堡围攻好刺激
[17] => 魔幻沙盒新作《ELEX》新视频出炉 游戏画面如何?
[18] => E3 2016:育碧《全境封锁》新DLC“求生”公布
[19] => 暗杀技能不带重样 潜行大作《耻辱2》新情报汇总
[20] => E3 2016:《上古卷轴5》重制版和PC原版画面对比
[21] => 《骑马与砍杀2》新情报 玩家亲率大军攻城屠杀
[22] => 《侠盗猎车5》马路杀手 坦克谋杀的一百种死法
[23] => 《文明6》中文版预告片 长城和故宫代表中国文明
[link] => Array
[0] => /article/257847
[1] => /article/261831
[2] => /article/259224
[3] => /article/259467
[4] => /article/257318
[5] => /article/261012
[6] => /article/261534
[7] => /article/255676
[8] => /article/256227
[9] => /article/263081
[10] => /article/262430
[11] => /article/261024
[12] => /article/259177
[13] => /article/258163
[14] => /article/257314
[15] => /article/263300
[16] => /article/260358
[17] => /article/258814
[18] => /article/260352
[19] => /article/256665
[20] => /article/260526
[21] => /article/264684
[22] => /article/256133
[23] => /article/255777
[_id] => Array
[0] => MongoId Object
[$id] => e9e786a6700002d
[1] => MongoId Object
[$id] => 57691bfe9e9e
[2] => MongoId Object
[$id] => 574f8d359e9e78eb
[3] => MongoId Object
[$id] => e784e3400000c
[4] => MongoId Object
[$id] => 57425bdb9e9e
[5] => MongoId Object
[$id] => e78e
[6] => MongoId Object
[$id] => e78a
[7] => MongoId Object
[$id] => 5733ddcc9e9e781a7600000b
[8] => MongoId Object
[$id] => 573afa3f00000f
[9] => MongoId Object
[$id] => e9e780b2f000002
[10] => MongoId Object
[$id] => 576ca22e9e9ec
[11] => MongoId Object
[$id] => e9e78cb
[12] => MongoId Object
[$id] => 574e
[13] => MongoId Object
[$id] => e78de
[14] => MongoId Object
[$id] => e9ec
[15] => MongoId Object
[$id] => e9ef
[16] => MongoId Object
[$id] => 575f6a1b9e9e78b
[17] => MongoId Object
[$id] => 574cdf9a9e9e78cf5800000f
[18] => MongoId Object
[$id] => 575f62f89e9e78ee
[19] => MongoId Object
[$id] => 573bdcfe9e9e78a37a000034
[20] => MongoId Object
[$id] => e
[21] => MongoId Object
[$id] => 577c64a19e9e78ab3f000009
[22] => MongoId Object
[$id] => e78fa1400003a
[23] => MongoId Object
[$id] => e9e781d7600006c
[orderChose] =>
[newsArr] => Array
[0] => Array
[_id] => MongoId Object
[$id] => 577cf85a9e9e78ad
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19552
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264856
[show_time] =>
[summary] =>
  《战神》的公布是本届E3的一个重磅消息,而在官方已经公布的预告和演示中,有一个显著的变化就是游戏采用了新的过肩视角,这一点和《美国末日》很相似。在接受外媒采访时,开发商圣莫妮卡工作室解释了为何采用过肩视角。
[tag] => Array
[key] => Array
[0] => 战神4
[1] => 逗游网
[title] => 开发商解释《战神4》过肩视角目的 为提升体验
[up_times] => 0
[video_pic] => /img/57/7c/f84b9e9e782a.jpg
[view_total] => 284
[view_total_add] => 0
[1] => Array
[_id] => MongoId Object
[$id] => 577cf78e9e9e
[big_pic] =>
[entertype] => 0
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264855
[show_time] =>
[summary] =>
  微软已经决定通过Play Anywhere计划让它旗下所有的XBOX第一方大作登陆PC。近日,微软在它的Windows Blog上作出了如下更新:
[tag] => Array
[key] => Array
[0] => Win10
[1] => Play anywhere
[2] => 逗游网
[title] => Win10将支持Play anywhere PC也能玩Xbox大作
[up_times] => 0
[video_pic] => /img/57/7c/f78c9e9e78fe.jpg
[view_total] => 150
[view_total_add] => 0
[2] => Array
[_id] => MongoId Object
[$id] => 577cf63e9e9e784e0d000052
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19433
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264854
[show_time] =>
[summary] =>
  育碧对于《看门狗2(Watch Dogs 2)》真可谓诚意十足,这个游戏看起来比前作要好很多,它完全兑现了对玩家的承诺。众多诚意事件中的一件是,他们想要在游戏中打造一个完美的跑酷系统,而对此他们说会给予玩家极大的运动自由——而且很显然,他们不是随便说说的,育碧为了这个全新的酷跑系统,还特意请来了酷跑专家来进行这个活动。
[tag] => Array
[key] => Array
[0] => 看门狗2
[1] => 逗游网
[title] => 《看门狗2》育碧诚意邀请专家打造完美跑酷系统
[up_times] => 2
[video_pic] => /img/57/7c/f80c00005e.jpg
[view_total] => 382
[view_total_add] => 0
[3] => Array
[_id] => MongoId Object
[$id] => 577cf5f59e9e
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19498
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264853
[show_time] =>
[summary] =>
  祝你好运能够发现复活节彩蛋。《战争机器4(Gears of War 4)》的复活节彩蛋以难以找到著称,总的来说,他们真的十分有趣。而且,游戏制作The Coalition这次提升了彩蛋的赌注哦。
[tag] => Array
[key] => Array
[0] => 战争机器4
[1] => 逗游网
[title] => 《战争机器4》卖弄复活节彩蛋“超级秘密”消息
[up_times] => 1
[video_pic] => /img/57/7c/f5df9e9e784f0d00001a.jpg
[view_total] => 118
[view_total_add] => 0
[4] => Array
[_id] => MongoId Object
[$id] => 577cf58c9e9eb
[big_pic] =>
[entertype] => 0
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264852
[show_time] =>
[summary] =>
  《公理边缘(Axiom Verge)》已经登录了很多平台,然而却一直没有登录任天堂的掌机平台。不过,根据游戏制作人Tom Happ的说法,这款已经发售了有一年多的“银河战士”风格的射击游戏将有希望登录任天堂3DS平台。
[tag] => Array
[key] => Array
[0] => 公理边缘
[1] => 逗游网
[title] => 《公理边缘》或考虑登陆3DS 2016将登陆Wii U
[up_times] => 0
[video_pic] => /img/57/7c/f57d9e9e.jpg
[view_total] => 49
[view_total_add] => 0
[5] => Array
[_id] => MongoId Object
[$id] => 577cf3ff9e9e780b0c000035
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19586
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264846
[show_time] =>
[summary] =>
  亚马逊近日列出了《塞尔达传说》2017年的日历壁纸,并提供了这款日历的预览图。如果你对这款日历感兴趣,可以预购,日历由Abrams日历发行(ISBN-10 ),下面大家一起看看封面,以及日历的一副预览。
[tag] => Array
[key] => Array
[0] => 塞尔达传说
[1] => 逗游网
[title] => 《塞尔达传说》2017版日历发布 多个游戏客串
[up_times] => 1
[video_pic] => /img/57/7c/f3cb9e9e78ff0e000033.jpg
[view_total] => 49
[view_total_add] => 0
[6] => Array
[_id] => MongoId Object
[$id] => 577cf2fe9e9e78f10e00002b
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 13543
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264844
[show_time] =>
[summary] =>
  《荒野大镖客2》真是让人等得花都谢了,但是Xbox One玩家马上就可以在自己的游戏主机上回顾已经上市6年的经典之作《荒野大镖客:救赎(Red Dead Redemption)》。
[tag] => Array
[key] => Array
[0] => R星
[1] => 荒野大镖客
[2] => 逗游网
[title] => R星确认《荒野大镖客》加入Xbox One向下兼容
[up_times] => 0
[video_pic] => /img/57/7c/f2ee9e9e.jpg
[view_total] => 148
[view_total_add] => 0
[7] => Array
[_id] => MongoId Object
[$id] => 577cfd80e000034
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 17982
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264842
[show_time] =>
[summary] =>
  Stage 2 Studios工作室正式宣布,动作冒险类游戏《荒芜星球(Lifeless Planet)》即将登陆PS4平台,但售价尚未公布。PS4版本将在7月19日正式开售,据官方消息,PS4版被描述为“重制版”,将向大家讲述一个扣人心弦并发人深省的故事。
[tag] => Array
[key] => Array
[0] => 荒芜星球
[1] => 逗游网
[title] => 《荒芜星球》登PS4平台 画质提升改进角色建模
[up_times] => 0
[video_pic] => /img/57/7c/f14b9e9e78f20e00002b.jpg
[view_total] => 206
[view_total_add] => 0
[8] => Array
[_id] => MongoId Object
[$id] => 577cffe0e000022
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19476
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264838
[show_time] =>
[summary] =>
  日本游戏周刊fami通近日对完宣布,本刊将在7月21日发布有关光荣制作的无双系列《剑风传奇无双》的相关最新信息。在7月21日发行的日本游戏杂志fami通上将会介绍《剑风传奇无双(Berserk)》的最新情报。在本作中,会添加“黄金时代篇”的支线任务体验。作为可操纵人设,鹰之团团员卡思嘉和捷度也会在本作中登场。
[tag] => Array
[key] => Array
[0] => 剑风传奇无双
[1] => 逗游网
[title] => 《剑风传奇无双》将添加可操作人物思嘉和捷度
[up_times] => 0
[video_pic] => /img/57/7c/f03f9e9e78ef0e000087.jpg
[view_total] => 73
[view_total_add] => 0
[9] => Array
[_id] => MongoId Object
[$id] => 577cee2d9e9ec
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19427
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264834
[show_time] =>
[summary] =>
  在PS2时代,如果你想玩足球游戏,那么实况绝对是你唯一的选择。但是随着Xbox360的出现,EA旗下的FIFA就凭借其完整的球队授权和流畅的比赛体验等优势逐渐成长为可以与实况不相高下的游戏。然而在过去的几年中实况也在不断改进自家游戏的玩家体验,从新的画面引擎FOX的应用到对游戏良好比赛节奏的控制,实况的进步也是有目共睹的。也正因为两款游戏在目前达到了相近的地位,使得玩家们对这两款游戏孰优孰劣产生了激烈的争论。
[tag] => Array
[key] => Array
[0] => 科乐美
[1] => 实况足球2017
[2] => 逗游网
[title] => 科乐美自信《实况足球2017》将完爆《FIFA17》
[up_times] => 1
[video_pic] => /img/57/7c/ee1b9e9e781b0c000026.jpg
[view_total] => 541
[view_total_add] => 0
[10] => Array
[_id] => MongoId Object
[$id] => 577ced0f9e9e784b0d000088
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 18759
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264830
[show_time] =>
[summary] =>
  《黑手党3(Mafia 3)》是一款将故事背景设定于上世纪60年代新奥尔良的犯罪题材游戏,虽然它的黑帮复古风格吸引了不少玩家的眼球,但从近日其创意总监Haden Blackman接受外媒采访的情况来看,其“动态的”开放世界才是最大的亮点。
[tag] => Array
[key] => Array
[0] => 黑手党3
[1] => 逗游网
[title] => 《黑手党3》将有动态开放世界 充满创意的犯罪
[up_times] => 7
[video_pic] => /img/57/7c/ecf39e9e78f30e000039.jpg
[view_total] => 684
[view_total_add] => 0
[11] => Array
[_id] => MongoId Object
[$id] => 577cebfb9e9ea
[big_pic] =>
[entertype] => 0
[jumpurl] =>
[n_cate] => 6
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264827
[show_time] =>
[summary] =>
  在多年专注于掌机游戏领域后,任天堂也在开始尝试进军智能手机游戏领域。但任天堂并不会将业务简单的集中于开发相关的智能手机游戏软件领域——在近期召开的公司年度股东大会上,这家公司就表明了其将在未来进军智能手机控制器外设领域的计划。
[tag] => Array
[key] => Array
[0] => 任天堂
[1] => 逗游网
[title] => 任天堂未来或计划研发智能手机控制器外设领域
[up_times] => 0
[video_pic] => /img/57/7c/ebf99e9e78f40e000023.jpg
[view_total] => 56
[view_total_add] => 0
[12] => Array
[_id] => MongoId Object
[$id] => 577ceb5d9e9e782d0c000081
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 17982
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264823
[show_time] =>
[summary] =>
  第三人称动作冒险游戏《荒芜星球(Lifeless Planet)》将会于本月下旬登陆PS4。开发商Stage 2工作室表示,这款PC/Xbox One平台游戏将于日登陆索尼主机平台,并且在游戏的主要角色和星球上有所改进。近日,官方公布了一批视频截图。
[tag] => Array
[key] => Array
[0] => 荒芜星球
[1] => 逗游网
[title] => 《荒芜星球》于本月登陆PS4 最新视频截图放出
[up_times] => 0
[video_pic] => /img/57/7c/eb3c9e9e784d0d000022.jpg
[view_total] => 41
[view_total_add] => 0
[13] => Array
[_id] => MongoId Object
[$id] => 577cec0c0000f9
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19309
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264817
[show_time] =>
[summary] =>
  近日,备受瞩目的太空题材沙盒大作《无人深空(No Man's Sky)》的音效总监Paul Weir在于巴塞罗那召开的Sónar+D大会上确认,这款新作的声音部分将会非常惊艳而富有创意,其等级提升机制也是大家之前没有见过的。
[tag] => Array
[key] => Array
[0] => 无人深空
[1] => 逗游网
[title] => 《无人深空》将有强力音效 多种装备或更有优势
[up_times] => 0
[video_pic] => /img/57/7c/e96f9e9e.jpg
[view_total] => 102
[view_total_add] => 0
[14] => Array
[_id] => MongoId Object
[$id] => 577ce73d9e9ee
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19566
[jumpurl] =>
[n_cate] => 5
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264812
[show_time] =>
[summary] =>
  《光环5(Halo 5)》有创作性的地图编辑器Forge让玩家们一直在创造新的东西出来,(还记得光环版的Quidditch和星球大战podracing吗?)不过这次应该是最近一阵子最好的向经典游戏致敬的行为了。一个Forge地图的创作者设法重现了经典的宝石海岸。这是最受欢迎的来自《索尼克大冒险((Sonic Adventure)》的经典场景。非常感谢战场交火更新之后增加了水的特性。
[tag] => Array
[key] => Array
[0] => 光环5
[1] => 逗游网
[title] => 《光环5》重现《索尼克大冒险》经典宝石海岸
[up_times] => 1
[video_pic] => /img/57/7c/ee0d000050.jpg
[view_total] => 108
[view_total_add] => 0
[15] => Array
[_id] => MongoId Object
[$id] => 577ce6eb9e9eb
[big_pic] =>
[entertype] => 0
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264809
[show_time] =>
[summary] =>
  Vita在西方的市场不够大。索尼的Playstation Vita掌上游戏机是最接近“平台体验”的手持设备了。但是它有明显的缺失,特别是在E3上。索尼SIE日本和亚洲地区总裁盛田厚(Atsushi Morita)在和4Gamer的谈话中谈到了PlayStation Vita缺席E3的原因和PS4的销售速度问题。
[tag] => Array
[key] => Array
[1] => 逗游网
[title] => 盛田厚解释为何E3上没有展示Playstation Vita
[up_times] => 0
[video_pic] => /img/57/7c/e6de9e9e78d60e00004e.jpg
[view_total] => 16
[view_total_add] => 0
[16] => Array
[_id] => MongoId Object
[$id] => 577b1c629e9e
[big_pic] => /img/57/7b/1d829e9e786d.jpg
[entertype] => 0
[gid] => Array
[0] => 13501
[1] => 18963
[jumpurl] =>
[n_cate] => 2
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264568
[show_time] =>
[summary] =>
  每到七月八月,另外一个娱乐产品市场--电影市场的生意就会异常火热,而反观游戏市场,也有着暑期档这么一说,本来只是因为学生放假而出现的假期档期,更多的影响了旅游市场,而现在随着网络游戏的兴起与电子产品的越发体验升级,更多的人选择在这个天气暴晒的日子在家里打游戏--当然不出门是不好的,无论天气多么恶劣都还是需要出门透透气。这个夏天的网游市场虽然没有什么劲爆的大作诞生或者出现,但是消磨时间的作品也还是很多,无论是传统的仙侠游戏还是魔幻的打怪传说,游戏总是不会少,毕竟每一个网游只要有一个土豪跌落深坑,那么这个公司这个月的收入就有保证了。不过这个普遍夏日温度已经到了三十多度的日子,出门真的是一件很困难的事情那。
[tag] => Array
[key] => Array
[0] => 盘点
[1] => 网游
[2] => 逗游网
[title] => 夏天热也要出门透气!盘点七月武侠类新品网游
[up_times] => 0
[video_pic] => /img/57/7b/1d7d9e9e.jpg
[view_total] => 207
[view_total_add] => 0
[17] => Array
[_id] => MongoId Object
[$id] => 577a536f9e9e789f
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 19448
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264490
[show_time] =>
[summary] =>
  Respawn工作室的这部科幻游戏作品续作看起来越来越好了。《泰坦陨落2(Titanfall 2)》听起来要兑现前作的承诺,游戏首先在各个领域的薄弱环节加强了基础建设。本质上,《泰坦陨落2(Titanfall 2)》就像是前作的加强版,不过更大,更好。
[tag] => Array
[key] => Array
[0] => 泰坦陨落2
[1] => 逗游网
[title] => 《泰坦陨落2》新细节:更多飞行员武器和装备
[up_times] => 0
[video_pic] => /img/57/7a/ba1600000e.jpg
[view_total] => 261
[view_total_add] => 0
[18] => Array
[_id] => MongoId Object
[$id] => 577a52ce9e9e785b1600000d
[big_pic] =>
[entertype] => 0
[gid] => Array
[0] => 16353
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264488
[show_time] =>
[summary] =>
  目前,游戏制作Bioware对《质量效应:仙女座(Mass Effect Andromeda)》的各个方面加大了宣传的力度。E3上对于该游戏的大肆宣传已经过去了蛮久的,而且游戏在E3上的另一个概念宣传片没有成功的展现,因此我对此标题表示非常怀疑。
[tag] => Array
[key] => Array
[0] => 质量效应:仙女座
[1] => 逗游网
[title] => 《质量效应:仙女座》导演卖弄游戏水准独一无二
[up_times] => 1
[video_pic] => /img/57/7a/52c59e9ec.jpg
[view_total] => 324
[view_total_add] => 0
[19] => Array
[_id] => MongoId Object
[$id] => 577a50c39e9e78be
[big_pic] =>
[entertype] => 0
[jumpurl] =>
[n_cate] => 1
[n_con_cate] => 1
[n_prop] => Array
[nid] => 264487
[show_time] =>
[summary] =>
  听起来很多粉丝们喜欢的内容将要回归了。《命运(Destiny)》有着漫长,崎岖不平的道路,但是我认为粉丝们之所以坚持不放弃这个游戏,是因为这个游戏就如同它DLC名字“铁旗崛起”一样,这是这个游戏在未发布之前承诺过的事情。现在游戏已经有了惊人的丰富的内容——感谢两年来的更新,拓展,更迭了最初贫乏的骨架一般的游戏,让游戏变得丰满。
[tag] => Array
[key] => Array
[0] => 命运
[1] => 逗游网
[title] => 《命运》铁旗崛起:麻雀赛车联盟等内容回归?
[up_times] => 0
[video_pic] => /img/57/7a/50ba9e9e78bc.jpg
[view_total] => 96
[view_total_add] => 0
[showpage] => ... & 第页
[tabChose] => yuanchuang
[tabName] => 原创资讯
[newsWeekTop] => Array
[0] => Array
[_id] => MongoId Object
[$id] => 577e1ec69e9e
[entertype] => 0
[jumpurl] =>
[nid] => 265075
[title] => 内涵囧图Vol.188 睡我上铺的妹子去哪了?
[1] => Array
[_id] => MongoId Object
[$id] => 577e2ed49e9e
[entertype] => 0
[jumpurl] =>
[nid] => 265102
[title] => 逗游游戏讲堂No.9:游戏工作室该不该禁止?
[2] => Array
[_id] => MongoId Object
[$id] => 577b0a2d9e9e
[entertype] => 0
[jumpurl] =>
[nid] => 264550
[title] => 《英雄联盟》6.13版本更新:传送大削、排位系统调整
[3] => Array
[_id] => MongoId Object
[$id] => 577fa8f19e9ed
[entertype] => 0
[jumpurl] =>
[nid] => 265367
[title] => IGN评分达满分的游戏《Inside》 你到底是个什么东西?
[4] => Array
[_id] => MongoId Object
[$id] => 577c64a19e9e78ab3f000009
[entertype] => 0
[jumpurl] =>
[nid] => 264684
[title] => 《骑马与砍杀2》新情报 玩家亲率大军攻城屠杀
[5] => Array
[_id] => MongoId Object
[$id] => e9e781c7a000011
[entertype] => 0
[jumpurl] =>
[nid] => 264377
[title] => 《龙珠:超宇宙2》最新演示 悟空化身一条巨龙
[6] => Array
[_id] => MongoId Object
[$id] => 577cdf00e000008
[entertype] => 0
[jumpurl] =>
[nid] => 264790
[title] => 《魔兽世界》7.0前夕明天就开?突发官推召集勇士
[7] => Array
[_id] => MongoId Object
[$id] => 577b2d9a9e9e78b
[entertype] => 0
[jumpurl] =>
[nid] => 264591
[title] => 343公布《光环战争2》发售日 明年2月21日发售
[8] => Array
[_id] => MongoId Object
[$id] => 577c77f09e9e
[entertype] => 0
[jumpurl] =>
[nid] => 264730
[title] => 《火影忍者:博人传》特典 “鸣人继任火影仪式”动画公开
[9] => Array
[_id] => MongoId Object
[$id] => e9e788a7a000001
[entertype] => 0
[jumpurl] =>
[nid] => 264376
[title] => 暴雪霸气登顶!外媒评当今业界十大最佳开发商
[newsMonthTop] => Array
[0] => Array
[_id] => MongoId Object
[$id] => 576d0fe49e9e
[entertype] => 0
[jumpurl] =>
[nid] => 262649
[title] => 内涵囧图Vol.186 夏天就得啪啪啪不然难受的囧图
[1] => Array
[_id] => MongoId Object
[$id] => e9e
[entertype] => 0
[jumpurl] =>
[nid] => 264300
[title] => 内涵囧图Vol.187 乳不平何以平天下 没时间解释了快上车!
[2] => Array
[_id] => MongoId Object
[$id] => 576bfef09e9e
[entertype] => 0
[jumpurl] =>
[nid] => 262391
[title] => 把你虐得怀疑人生!盘点破坏平衡的逆天级武器
[3] => Array
[_id] => MongoId Object
[$id] => 575e564c9e9e
[entertype] => 0
[jumpurl] =>
[nid] => 260265
[title] => E3 2016游戏展前瞻汇总 一大波游戏巨作来袭!
[4] => Array
[_id] => MongoId Object
[$id] => 577e1ec69e9e
[entertype] => 0
[jumpurl] =>
[nid] => 265075
[title] => 内涵囧图Vol.188 睡我上铺的妹子去哪了?
[5] => Array
[_id] => MongoId Object
[$id] => 5e786f
[entertype] => 0
[jumpurl] =>
[nid] => 261484
[title] => 总有一款让你重温感动!盘点业界怀旧精品游戏
[6] => Array
[_id] => MongoId Object
[$id] => 575d304d9e9e780b6700001a
[entertype] => 0
[jumpurl] =>
[nid] => 260151
[title] => 越来越烂 盘点2016有机会成为佳作的烂作续集
[7] => Array
[_id] => MongoId Object
[$id] => 57691bfe9e9e
[entertype] => 0
[jumpurl] =>
[nid] => 261831
[title] => 2016年7月PC单机重点游戏前瞻 解谜类玩家福音
[8] => Array
[_id] => MongoId Object
[$id] => 576deb729e9e787f
[entertype] => 0
[jumpurl] =>
[nid] => 262733
[title] => 第一感重要?盘点媒体玩家评分差距较大的游戏
[9] => Array
[_id] => MongoId Object
[$id] => 576bfa7b000002
[entertype] => 0
[jumpurl] =>
[nid] => 262222
[title] => 无时无刻给你挫败感!盘点最让玩家厌烦的怪物
[strategyWeekTop] => Array
[0] => Array
[_id] => MongoId Object
[$id] => e9ed
[entertype] => 0
[jumpurl] =>
[nid] => 259593
[title] => 《侠客风云传》碧血丹心DLC新武功获得方法
[1] => Array
[_id] => MongoId Object
[$id] => e784d3e000017
[entertype] => 0
[jumpurl] =>
[nid] => 259937
[title] => 《钢铁雄心4》全系统解析上手图文攻略
[2] => Array
[_id] => MongoId Object
[$id] => 573b
[entertype] => 0
[jumpurl] =>
[nid] => 256472
[title] => 《方舟:生存进化》全生物物种资料图鉴及恐龙驯服攻略
[3] => Array
[_id] => MongoId Object
[$id] => 57577ebe9e9e785b3e000010
[entertype] => 0
[jumpurl] =>
[nid] => 259942
[title] => 《魔兽争霸3》世界观设定及人物背景
[4] => Array
[_id] => MongoId Object
[$id] => 574e37c000038
[entertype] => 0
[jumpurl] =>
[nid] => 259124
[title] => 《侠客风云传》碧血丹心DLC新武功招式及获得方法
[5] => Array
[_id] => MongoId Object
[$id] => e9e
[entertype] => 0
[jumpurl] =>
[nid] => 261832
[title] => 《黎明杀机》全物品图鉴及技能作用介绍
[6] => Array
[_id] => MongoId Object
[$id] => 575e7bd69e9e78f
[entertype] => 0
[jumpurl] =>
[nid] => 260284
[title] => 《传送门骑士》全职业天赋及地图道具解析攻略
[7] => Array
[_id] => MongoId Object
[$id] => 573b0eaf9e9e
[entertype] => 0
[jumpurl] =>
[nid] => 256482
[title] => 《守望先锋》黑百合一键开镜小技巧分享
[8] => Array
[_id] => MongoId Object
[$id] => 573d8abb9e9e78c
[entertype] => 0
[jumpurl] =>
[nid] => 256961
[title] => 《饥荒》新手开局及生存图文教学 新手攻略
[9] => Array
[_id] => MongoId Object
[$id] => e782a4c00004a
[entertype] => 0
[jumpurl] =>
[nid] => 258049
[title] => 《盐和避难所》全关卡难点流程图文攻略
[strategyMonthTop] => Array
[0] => Array
[_id] => MongoId Object
[$id] => e9e
[entertype] => 0
[jumpurl] =>
[nid] => 261832
[title] => 《黎明杀机》全物品图鉴及技能作用介绍
[1] => Array
[_id] => MongoId Object
[$id] => 575e7bd69e9e78f
[entertype] => 0
[jumpurl] =>
[nid] => 260284
[title] => 《传送门骑士》全职业天赋及地图道具解析攻略
[2] => Array
[_id] => MongoId Object
[$id] => e
[entertype] => 0
[jumpurl] =>
[nid] => 263251
[title] => 《黎明杀机》全地图无敌房及地窖图文详解
[3] => Array
[_id] => MongoId Object
[$id] => 576b84d29e9e
[entertype] => 0
[jumpurl] =>
[nid] => 262279
[title] => 《黎明杀机》技能中文翻译及实用性解析
[4] => Array
[_id] => MongoId Object
[$id] => 576b81e69e9e78c17b00001b
[entertype] => 0
[jumpurl] =>
[nid] => 262268
[title] => 《黎明杀机》全地窖逃生点位置图文解析
[5] => Array
[_id] => MongoId Object
[$id] => 575fbb8f9e9e78ef
[entertype] => 0
[jumpurl] =>
[nid] => 260438
[title] => 《盐和避难所》全中文标注详细地图一览
[6] => Array
[_id] => MongoId Object
[$id] => 576a3dba9e9ef
[entertype] => 0
[jumpurl] =>
[nid] => 262007
[title] => 《黎明杀机》50级转生血衣及血武器属性详解
[7] => Array
[_id] => MongoId Object
[$id] => e9e787b
[entertype] => 0
[jumpurl] =>
[nid] => 261207
[title] => 《口袋妖怪漆黑的魅影》金手指代码大全
[8] => Array
[_id] => MongoId Object
[$id] => 576b519f9e9e78eb7b000003
[entertype] => 0
[jumpurl] =>
[nid] => 262220
[title] => 保卫萝卜3-工厂地图全关卡图文攻略
[9] => Array
[_id] => MongoId Object
[$id] => 576a2cb89e9e785e0c00001a
[entertype] => 0
[jumpurl] =>
[nid] => 261995
[title] => 《黎明杀机》修改器及用法详解 血球及技能存档修改器
微信:doyo_game
  《战神》的公布是本届E3的一个重磅消息,而在官方已经公布的预告和演示中,有一个显著的变化就是游戏采用了新的过肩视角,这一点和《美国末日》很相似。在接受外媒采访时,开发商圣莫妮卡工作室解释了为何采用…
284& & -->0 & & 0 & &
& & 战神4 & & 逗游网
  微软已经决定通过Play Anywhere计划让它旗下所有的XBOX第一方大作登陆PC。近日,微软在它的Windows Blog上作出了如下更新:
150& & -->0 & & 0 & &
& & Win10 & & Play anywhere & & 逗游网
  育碧对于《看门狗2(Watch Dogs 2)》真可谓诚意十足,这个游戏看起来比前作要好很多,它完全兑现了对玩家的承诺。众多诚意事件中的一件是,他们想要在游戏中打造一个完美的跑酷系统,而对此他们说会给予玩家…
382& & -->0 & & 2 & &
& & 看门狗2 & & 逗游网
  祝你好运能够发现复活节彩蛋。《战争机器4(Gears of War 4)》的复活节彩蛋以难以找到著称,总的来说,他们真的十分有趣。而且,游戏制作The Coalition这次提升了彩蛋的赌注哦。
118& & -->0 & & 1 & &
& & 战争机器4 & & 逗游网
  《公理边缘(Axiom Verge)》已经登录了很多平台,然而却一直没有登录任天堂的掌机平台。不过,根据游戏制作人Tom Happ的说法,这款已经发售了有一年多的“银河战士”风格的射击游戏将有希望登录任天堂3DS平台。
49& & -->0 & & 0 & &
& & 公理边缘 & & 逗游网
  亚马逊近日列出了《塞尔达传说》2017年的日历壁纸,并提供了这款日历的预览图。如果你对这款日历感兴趣,可以预购,日历由Abrams日历发行(ISBN-10 ),下面大家一起看看封面,以及日历的一副预览。
49& & -->0 & & 1 & &
& & 塞尔达传说 & & 逗游网
  《荒野大镖客2》真是让人等得花都谢了,但是Xbox One玩家马上就可以在自己的游戏主机上回顾已经上市6年的经典之作《荒野大镖客:救赎(Red Dead Redemption)》。
148& & -->0 & & 0 & &
& & R星 & & 荒野大镖客 & & 逗游网
  Stage 2 Studios工作室正式宣布,动作冒险类游戏《荒芜星球(Lifeless Planet)》即将登陆PS4平台,但售价尚未公布。PS4版本将在7月19日正式开售,据官方消息,PS4版被描述为“重制版”,将向大家讲述一个扣人心…
206& & -->0 & & 0 & &
& & 荒芜星球 & & 逗游网
  日本游戏周刊fami通近日对完宣布,本刊将在7月21日发布有关光荣制作的无双系列《剑风传奇无双》的相关最新信息。在7月21日发行的日本游戏杂志fami通上将会介绍《剑风传奇无双(Berserk)》的最新情报。在本作…
73& & -->0 & & 0 & &
& & 剑风传奇无双 & & 逗游网
  在PS2时代,如果你想玩足球游戏,那么实况绝对是你唯一的选择。但是随着Xbox360的出现,EA旗下的FIFA就凭借其完整的球队授权和流畅的比赛体验等优势逐渐成长为可以与实况不相高下的游戏。然而在过去的几年中实…
541& & -->0 & & 1 & &
& & 科乐美 & & 实况足球2017 & & 逗游网
  《黑手党3(Mafia 3)》是一款将故事背景设定于上世纪60年代新奥尔良的犯罪题材游戏,虽然它的黑帮复古风格吸引了不少玩家的眼球,但从近日其创意总监Haden Blackman接受外媒采访的情况来看,其“动态的”开放…
684& & -->0 & & 7 & &
& & 黑手党3 & & 逗游网
  在多年专注于掌机游戏领域后,任天堂也在开始尝试进军智能手机游戏领域。但任天堂并不会将业务简单的集中于开发相关的智能手机游戏软件领域——在近期召开的公司年度股东大会上,这家公司就表明了其将在未来进…
56& & -->1 & & 0 & &
& & 任天堂 & & 逗游网
  第三人称动作冒险游戏《荒芜星球(Lifeless Planet)》将会于本月下旬登陆PS4。开发商Stage 2工作室表示,这款PC/Xbox One平台游戏将于日登陆索尼主机平台,并且在游戏的主要角色和星球上有所改进…
41& & -->0 & & 0 & &
& & 荒芜星球 & & 逗游网
  近日,备受瞩目的太空题材沙盒大作《无人深空(No Man's Sky)》的音效总监Paul Weir在于巴塞罗那召开的Sónar+D大会上确认,这款新作的声音部分将会非常惊艳而富有创意,其等级提升机制也是大家之前没有见过…
102& & -->0 & & 0 & &
& & 无人深空 & & 逗游网
  《光环5(Halo 5)》有创作性的地图编辑器Forge让玩家们一直在创造新的东西出来,(还记得光环版的Quidditch和星球大战podracing吗?)不过这次应该是最近一阵子最好的向经典游戏致敬的行为了。一个Forge地图…
108& & -->1 & & 1 & &
& & 光环5 & & 逗游网
  Vita在西方的市场不够大。索尼的Playstation Vita掌上游戏机是最接近“平台体验”的手持设备了。但是它有明显的缺失,特别是在E3上。索尼SIE日本和亚洲地区总裁盛田厚(Atsushi Morita)在和4Gamer的谈话中谈到了…
16& & -->0 & & 0 & &
& & E3 & & 逗游网
  每到七月八月,另外一个娱乐产品市场--电影市场的生意就会异常火热,而反观游戏市场,也有着暑期档这么一说,本来只是因为学生放假而出现的假期档期,更多的影响了旅游市场,而现在随着网络游戏的兴起与电子产…
207& & -->0 & & 0 & &
& & 盘点 & & 网游 & & 逗游网
  Respawn工作室的这部科幻游戏作品续作看起来越来越好了。《泰坦陨落2(Titanfall 2)》听起来要兑现前作的承诺,游戏首先在各个领域的薄弱环节加强了基础建设。本质上,《泰坦陨落2(Titanfall 2)》就像是前…
261& & -->0 & & 0 & &
& & 泰坦陨落2 & & 逗游网
  目前,游戏制作Bioware对《质量效应:仙女座(Mass Effect Andromeda)》的各个方面加大了宣传的力度。E3上对于该游戏的大肆宣传已经过去了蛮久的,而且游戏在E3上的另一个概念宣传片没有成功的展现,因此我对…
324& & -->0 & & 1 & &
& & 质量效应:仙女座 & & 逗游网
  听起来很多粉丝们喜欢的内容将要回归了。《命运(Destiny)》有着漫长,崎岖不平的道路,但是我认为粉丝们之所以坚持不放弃这个游戏,是因为这个游戏就如同它DLC名字“铁旗崛起”一样,这是这个游戏在未发布之…
96& & -->0 & & 0 & &
& & 命运 & & 逗游网
... & 第页}

我要回帖

更多关于 地图编辑器 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信