Fe
  1 / 2    
Hi all, Just a heads-up that this beautiful platformer (very much in the spirit of Rime) is now available from Origin. ([url]http://www.zoinkgames.com/portfolio-item/fe/[/url]) It is Unity (not sure which version as looking at the details of the game exe didn't reveal much) and I applied DSS's Subnautica fix and it produced some really good results - not perfect... some minor shadow/lighting issues to be dealt with... If anyone has any interest in polishing it up, I would be happy to contribute the game.
Hi all,

Just a heads-up that this beautiful platformer (very much in the spirit of Rime) is now available from Origin. (http://www.zoinkgames.com/portfolio-item/fe/)

It is Unity (not sure which version as looking at the details of the game exe didn't reveal much) and I applied DSS's Subnautica fix and it produced some really good results - not perfect... some minor shadow/lighting issues to be dealt with...

If anyone has any interest in polishing it up, I would be happy to contribute the game.

#1
Posted 02/16/2018 04:37 PM   
This looks absolutely stunning, and reviews are great.
This looks absolutely stunning, and reviews are great.

#2
Posted 02/18/2018 03:24 AM   
FYI, I'm currently working on a fix for this using some code injection. It uses a similar method to the fix i made for INSIDE, except that it uses 3D Vision Direct instead of the 0 separation hack for 3D Vision automatic, and I'm not doubling the game's update rate or screwing around with the timescale. I was forced to use those "hacks" for INSIDE since it used an older custom build of Unity. Hopefully with this game i shouldn't run into the same issues. Wish me luck.
FYI, I'm currently working on a fix for this using some code injection. It uses a similar method to the fix i made for INSIDE, except that it uses 3D Vision Direct instead of the 0 separation hack for 3D Vision automatic, and I'm not doubling the game's update rate or screwing around with the timescale. I was forced to use those "hacks" for INSIDE since it used an older custom build of Unity. Hopefully with this game i shouldn't run into the same issues. Wish me luck.

Like my work? You can send a donation via Paypal to sgs.rules@gmail.com

Windows 7 Pro 64x - Nvidia Driver 398.82 - EVGA 980Ti SC - Optoma HD26 with Edid override - 3D Vision 2 - i7-8700K CPU at 5.0Ghz - ASROCK Z370 Ext 4 Motherboard - 32 GB RAM Corsair Vengeance - 512 GB Samsung SSD 850 Pro - Creative Sound Blaster Z

#3
Posted 03/22/2018 09:42 PM   
Thanks sgs... and good luck!
Thanks sgs... and good luck!

#4
Posted 03/22/2018 10:31 PM   
I Got it working, But i don't have enough time to fully test it. I'll post a WIP here tomorrow morning so someone else can test it.
I Got it working, But i don't have enough time to fully test it. I'll post a WIP here tomorrow morning so someone else can test it.

Like my work? You can send a donation via Paypal to sgs.rules@gmail.com

Windows 7 Pro 64x - Nvidia Driver 398.82 - EVGA 980Ti SC - Optoma HD26 with Edid override - 3D Vision 2 - i7-8700K CPU at 5.0Ghz - ASROCK Z370 Ext 4 Motherboard - 32 GB RAM Corsair Vengeance - 512 GB Samsung SSD 850 Pro - Creative Sound Blaster Z

#5
Posted 03/23/2018 03:53 AM   
The fix is done, and it's pixel perfect. The only caveat is that Vsync is disabled. I just need to add a few preferences to my .ini file, do a quick write up, zip it and put it up on the blog. It's my Bday weekend so I'll be out celebrating, but if i have the time i'll get it done sometime this weekend. [url=http://www.iforce.co.nz/View.aspx?i=4v1g2tk5.cfw.jpg][img]http://iforce.co.nz/i/4v1g2tk5.cfw.jpg[/img][/url] [url=http://www.iforce.co.nz/View.aspx?i=uczvgmid.0oh.jpg][img]http://iforce.co.nz/i/uczvgmid.0oh.jpg[/img][/url] [url=http://www.iforce.co.nz/View.aspx?i=h0bfdht0.qbh.jpg][img]http://iforce.co.nz/i/h0bfdht0.qbh.jpg[/img][/url] [url=http://www.iforce.co.nz/View.aspx?i=j53cbf3r.hc2.jpg][img]http://iforce.co.nz/i/j53cbf3r.hc2.jpg[/img][/url] [url=http://www.iforce.co.nz/View.aspx?i=f4sek03x.wfp.jpg][img]http://iforce.co.nz/i/f4sek03x.wfp.jpg[/img][/url] [url=http://www.iforce.co.nz/View.aspx?i=5q4vtldl.hp3.jpg][img]http://iforce.co.nz/i/5q4vtldl.hp3.jpg[/img][/url] I made several improvements to the 3d Vision code injector i wrote for Unity since i used it last on INSIDE. 1) The fix uses Direct mode instead of automatic. I believe Fe is the first game to use 3dMigoto's Direct Mode. INSIDE used a 0 separation hack using 3DVision automatic. Automatic mode was used to create the 3D backbuffer but separation was forced to 0 to negate any processing done by automatic. This still added a slight bit of extra separation to the image and also decreased performance since each frame was rendered 4 times (twice for automatic which did nothing, and twice for my method.). This is no longer the case. 2) The Engine is still being forced to update at 120Hz, but I'm not longer altering the time scale to sync the left and right eyes. Since rendering to each eye is done sequentially the timing needed to be "paused" so that the eyes would stay in sync. For INSIDE i would alter Unity's timescale to achieve this, unfortunately this causes glitches in most games I've tested it with, so i had to devise another method. With the new method both eyes are kept in sync without altering the timescale. Bo3b deserves a huge thanks for adding support for Direct Mode to 3dMigoto. I know he put a lot of time and effort into it and this fix would not be possible without Direct Mode. In fact, the main reason i decided to fix this game was to take advantage of all the time we both spent in get this method working. Unfortunately I could never get Direct mode to work with INSIDE and the code was never used. I felt a bit guilty at having wasted all that effort. Well that's about to change. I'll be generalizing the fix, and when I'm done this should hopefully work with all Unity games starting with 5.6 and up including 2017.1 and 2017.2. I'm aiming at making it easy to use so that someone without any coding or shader hacking skills can use it. Cheers!
The fix is done, and it's pixel perfect. The only caveat is that Vsync is disabled. I just need to add a few preferences to my .ini file, do a quick write up, zip it and put it up on the blog. It's my Bday weekend so I'll be out celebrating, but if i have the time i'll get it done sometime this weekend.

Image
Image
Image
Image
Image
Image

I made several improvements to the 3d Vision code injector i wrote for Unity since i used it last on INSIDE.

1) The fix uses Direct mode instead of automatic. I believe Fe is the first game to use 3dMigoto's Direct Mode. INSIDE used a 0 separation hack using 3DVision automatic. Automatic mode was used to create the 3D backbuffer but separation was forced to 0 to negate any processing done by automatic. This still added a slight bit of extra separation to the image and also decreased performance since each frame was rendered 4 times (twice for automatic which did nothing, and twice for my method.). This is no longer the case.

2) The Engine is still being forced to update at 120Hz, but I'm not longer altering the time scale to sync the left and right eyes. Since rendering to each eye is done sequentially the timing needed to be "paused" so that the eyes would stay in sync. For INSIDE i would alter Unity's timescale to achieve this, unfortunately this causes glitches in most games I've tested it with, so i had to devise another method. With the new method both eyes are kept in sync without altering the timescale.

Bo3b deserves a huge thanks for adding support for Direct Mode to 3dMigoto. I know he put a lot of time and effort into it and this fix would not be possible without Direct Mode. In fact, the main reason i decided to fix this game was to take advantage of all the time we both spent in get this method working. Unfortunately I could never get Direct mode to work with INSIDE and the code was never used. I felt a bit guilty at having wasted all that effort. Well that's about to change. I'll be generalizing the fix, and when I'm done this should hopefully work with all Unity games starting with 5.6 and up including 2017.1 and 2017.2. I'm aiming at making it easy to use so that someone without any coding or shader hacking skills can use it.

Cheers!

Like my work? You can send a donation via Paypal to sgs.rules@gmail.com

Windows 7 Pro 64x - Nvidia Driver 398.82 - EVGA 980Ti SC - Optoma HD26 with Edid override - 3D Vision 2 - i7-8700K CPU at 5.0Ghz - ASROCK Z370 Ext 4 Motherboard - 32 GB RAM Corsair Vengeance - 512 GB Samsung SSD 850 Pro - Creative Sound Blaster Z

#6
Posted 03/24/2018 03:45 PM   
[quote="sgsrules"]but separation was forced to 0 to negate any processing done by automatic. This still added a slight bit of extra separation to the image[/quote] About this, I have something to ask you about, because unfortunatelly I have uninstalled INSIDE the other day to install FFXV: after some of my FFXII updates, I discovered that the "StereoFullHKConfig" registry setting, when enabled, unlocks the full capability of separation, [b]letting you use absolute zero separation[/b]. Can you check if it fixes that small separation issue in your fix? https://s3.amazonaws.com/masterotaku/FFXII/FFXII_TZA_3D_Vision_fix.7z That's my FFXII fix, and you need to install to your registry the ".reg" file that comes with it. Actually you need just the registry key about "StereoFullHKConfig". PS: this Fe fix looks great. Thanks!
sgsrules said:but separation was forced to 0 to negate any processing done by automatic. This still added a slight bit of extra separation to the image


About this, I have something to ask you about, because unfortunatelly I have uninstalled INSIDE the other day to install FFXV: after some of my FFXII updates, I discovered that the "StereoFullHKConfig" registry setting, when enabled, unlocks the full capability of separation, letting you use absolute zero separation. Can you check if it fixes that small separation issue in your fix?

https://s3.amazonaws.com/masterotaku/FFXII/FFXII_TZA_3D_Vision_fix.7z

That's my FFXII fix, and you need to install to your registry the ".reg" file that comes with it. Actually you need just the registry key about "StereoFullHKConfig".


PS: this Fe fix looks great. Thanks!

CPU: Intel Core i7 7700K @ 4.9GHz
Motherboard: Gigabyte Aorus GA-Z270X-Gaming 5
RAM: GSKILL Ripjaws Z 16GB 3866MHz CL18
GPU: Gainward Phoenix 1080 GLH
Monitor: Asus PG278QR
Speakers: Logitech Z506
Donations account: masterotakusuko@gmail.com

#7
Posted 03/24/2018 04:03 PM   
Awesome news sgsrules !! So many great indie/ AA titles is developed with Unity, so a "drop'n'play" solution would be more than velcome :) HUGE thanks to both of you !!
Awesome news sgsrules !!

So many great indie/ AA titles is developed with Unity, so a "drop'n'play" solution would be more than velcome :)

HUGE thanks to both of you !!

Win7 64bit Pro
CPU: 4790K 4.8 GHZ
GPU: Aurus 1080 TI 2.08 GHZ - 100% Watercooled !
Monitor: Asus PG278QR
And lots of ram and HD's ;)

#8
Posted 03/24/2018 04:09 PM   
[quote="masterotaku"][quote="sgsrules"]but separation was forced to 0 to negate any processing done by automatic. This still added a slight bit of extra separation to the image[/quote] About this, I have something to ask you about, because unfortunatelly I have uninstalled INSIDE the other day to install FFXV: after some of my FFXII updates, I discovered that the "StereoFullHKConfig" registry setting, when enabled, unlocks the full capability of separation, [b]letting you use absolute zero separation[/b]. Can you check if it fixes that small separation issue in your fix? https://s3.amazonaws.com/masterotaku/FFXII/FFXII_TZA_3D_Vision_fix.7z That's my FFXII fix, and you need to install to your registry the ".reg" file that comes with it. Actually you need just the registry key about "StereoFullHKConfig". PS: this Fe fix looks great. Thanks![/quote] Nice find, Thanks! I'll give it a shot later.
masterotaku said:
sgsrules said:but separation was forced to 0 to negate any processing done by automatic. This still added a slight bit of extra separation to the image


About this, I have something to ask you about, because unfortunatelly I have uninstalled INSIDE the other day to install FFXV: after some of my FFXII updates, I discovered that the "StereoFullHKConfig" registry setting, when enabled, unlocks the full capability of separation, letting you use absolute zero separation. Can you check if it fixes that small separation issue in your fix?


https://s3.amazonaws.com/masterotaku/FFXII/FFXII_TZA_3D_Vision_fix.7z


That's my FFXII fix, and you need to install to your registry the ".reg" file that comes with it. Actually you need just the registry key about "StereoFullHKConfig".


PS: this Fe fix looks great. Thanks!


Nice find, Thanks! I'll give it a shot later.

Like my work? You can send a donation via Paypal to sgs.rules@gmail.com

Windows 7 Pro 64x - Nvidia Driver 398.82 - EVGA 980Ti SC - Optoma HD26 with Edid override - 3D Vision 2 - i7-8700K CPU at 5.0Ghz - ASROCK Z370 Ext 4 Motherboard - 32 GB RAM Corsair Vengeance - 512 GB Samsung SSD 850 Pro - Creative Sound Blaster Z

#9
Posted 03/24/2018 04:26 PM   
Congrats & thanks sgsrules! And Enjoy your birthday :)
Congrats & thanks sgsrules!

And Enjoy your birthday :)

http://photos.3dvisionlive.com/chtiblue/album/530b52d4cb85770d6e000049/3Dvision with 49" Philips 49PUS7100 interlieved 3D (3840x2160) overide mode, GTX 1080 GFA2 EXOC, core i5 @4.3GHz, 16Gb@2130, windows 7&10 64bit, Dolby Atmos 5.1.4 Marantz 6010 AVR

#10
Posted 03/24/2018 05:23 PM   
Very nice sgsrules!!! amazing work! screenshots looks really great! Hope you have an amazing birthday weekend with your family and friends. Cheers!!
Very nice sgsrules!!! amazing work! screenshots looks really great!

Hope you have an amazing birthday weekend with your family and friends. Cheers!!

MY WEB

Helix Mod - Making 3D Better

My 3D Screenshot Gallery

Like my fixes? you can donate to Paypal: dhr.donation@gmail.com

#11
Posted 03/24/2018 05:42 PM   
Fantastic! Thanks so much SGS!
Fantastic! Thanks so much SGS!

#12
Posted 03/24/2018 06:30 PM   
Happy Birthday man. Fix looks awesome!
Happy Birthday man. Fix looks awesome!

#13
Posted 03/24/2018 06:53 PM   
Well done @sgsrules, haven't seen you here for a while but glad your work has paid off. Have a great birthday weekend. ps. And thanks Bo3b :-) I don't think you get the credit you deserve!
Well done @sgsrules, haven't seen you here for a while but glad your work has paid off. Have a great birthday weekend.

ps. And thanks Bo3b :-) I don't think you get the credit you deserve!

GTX 1070 SLI, I7-6700k ~ 4.4Ghz, 3x BenQ XL2420T, BenQ TK800, LG 55EG960V (3D OLED), Samsung 850 EVO SSD, Crucial M4 SSD, 3D vision kit, Xpand x104 glasses, Corsair HX1000i, Win 10 pro 64/Win 7 64https://www.3dmark.com/fs/9529310

#14
Posted 03/24/2018 07:11 PM   
Wow this fix looks awesome. Great job sgsrules! Really looking forward for it. Have a nice birthday party!
Wow this fix looks awesome. Great job sgsrules! Really looking forward for it.

Have a nice birthday party!

ASUS ROG Strix GeForce GTX 1080 | Core I7-7700K | 16GB RAM | Win10 Pro x64
Asus ROG Swift PG278Q 3D Vision Monitor
Optoma UHD 40 3D Vision Projector
Paypal donations for 3D Fix Manager: duselpaul86@gmx.de

#15
Posted 03/25/2018 12:11 AM   
  1 / 2    
Scroll To Top