xbox-scene.com - your xbox news information source
Quick Links: Main Forums | Xbox360 Forums | Xbox1 Forums | PS3 Forums
Xbox-Scene Forum Help  Search Xbox-Scene Forums   Xbox-Scene Forum Members   Xbox-Scene Calendar

Giganews Usenet Offers: +1150 days binary retention, 99%+ Completion, and Unlimited Speed/Access!

360 ODD Emulators: X360 Key $99 | Wasabi360 FAT $99 | Wasabi360 Slim $99
C4E's iXtreme Burner MAX Drive: LiteOn iHAS124 DROPPED TO JUST $17


Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Butterfly (patches)
openxdkman
post Dec 12 2006, 09:14 PM
Post #1


X-S Genius
****

Group: Moderator
Posts: 822
Joined: 2-August 06
Member No.: 292548
Xbox Version: unk
360 version: unknown



Butterfly (final) starts in fullscreen mode, so I get black screen and doesn't accept Alt+Return,
so here is a patch to "see something"

In BufferflyGame.cs, at line 75

replace

graphics.PreferredBackBufferWidth = 1024;
graphics.PreferredBackBufferHeight = 768;
graphics.SynchronizeWithVerticalRetrace = false;
graphics.PreferMultiSampling = false;
this.IsFixedTimeStep = false;
this.Window.AllowUserResizing = true;
this.graphics.IsFullScreen = true;
graphics.ApplyChanges();

with

graphics.PreferredBackBufferWidth = 800;
graphics.PreferredBackBufferHeight = 600;
graphics.SynchronizeWithVerticalRetrace = false;
graphics.PreferMultiSampling = false;
this.IsFixedTimeStep = false;
this.Window.AllowUserResizing = true;
this.graphics.IsFullScreen = false; //now is false
graphics.ApplyChanges();


There are other issues to fix it seems. Stay tuned.
User is offlineProfile CardPM
Go to the top of the page
+Quote Post
openxdkman
post Dec 12 2006, 09:29 PM
Post #2


X-S Genius
****

Group: Moderator
Posts: 822
Joined: 2-August 06
Member No.: 292548
Xbox Version: unk
360 version: unknown



Strange keyboard mapping in first menu seems to be :
Y:Up (credits)
A:Down (start game, or continue game?)

There is a out of range error that prevents game from starting. Here is the fix :

In GameLogic.cs, at line 232, replace


if (playerData.CurrentLevel > levelList.levels.Count)
playerData.CurrentLevel = 1;

with


if (playerData.CurrentLevel < 1)
playerData.CurrentLevel = 1;
if (playerData.CurrentLevel > levelList.levels.Count)
playerData.CurrentLevel = 1;

Now we can see the little butterfly in 3D.

Arrow keys allow to turn butterfly
Space make it use its wings to ascend
Mouse wheel acts as a zoom
QZSD turns camera
User is offlineProfile CardPM
Go to the top of the page
+Quote Post





Reply to this topicStart new topic

 

Lo-Fi Version Time is now: 25th May 2013 - 05:44 AM