mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-25 19:16:52 +01:00
[MCSM] Add support
This commit is contained in:
parent
da458f0af0
commit
c57f15ca3a
62
Source/MinecraftStory/rules.txt
Normal file
62
Source/MinecraftStory/rules.txt
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
include 'Source/functions.php';
|
||||
$fullWidth = $argv[1];
|
||||
$fullHeight = $argv[2];
|
||||
$scaleFactorX = $fullWidth / 1280.0;
|
||||
$scaleFactorY = $fullHeight / 720.0;
|
||||
$title = get_title($fullWidth, $fullHeight);
|
||||
?>
|
||||
|
||||
[Definition]
|
||||
titleIds = 00050000101E0100,000500001020A200,000500001020A300
|
||||
name = "Minecraft: Story Mode - <?=$title?>"
|
||||
version = 2
|
||||
|
||||
[TextureRedefine]
|
||||
width = 1280
|
||||
height = 720
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*1280)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*720)?>
|
||||
|
||||
#[TextureRedefine] #May unintentionally scale textures, check formatsExcluded
|
||||
#width = 1024
|
||||
#height = 1024
|
||||
#formatsExcluded =
|
||||
#overwriteWidth = <?=round($scaleFactorX*1024)?>
|
||||
#overwriteHeight = <?=round($scaleFactorY*1024)?>
|
||||
|
||||
#[TextureRedefine] #May unintentionally scale textures, check formatsExcluded
|
||||
#width = 1022
|
||||
#height = 1022
|
||||
#formatsExcluded =
|
||||
#overwriteWidth = <?=round($scaleFactorX*1022)?>
|
||||
#overwriteHeight = <?=round($scaleFactorY*1022)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 640
|
||||
height = 360
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*640)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*360)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 320
|
||||
height = 180
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*320)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*180)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 160
|
||||
height = 90
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*160)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*90)?>
|
||||
|
||||
[TextureRedefine]
|
||||
width = 80
|
||||
height = 45
|
||||
#formatsExcluded =
|
||||
overwriteWidth = <?=round($scaleFactorX*80)?>
|
||||
overwriteHeight = <?=round($scaleFactorY*45)?>
|
1
build.sh
1
build.sh
@ -151,6 +151,7 @@ std_respack "MarioKart8" "${res16by9[@]/$just720p}" "${res21by9[@]}" "${res48by9
|
||||
std_respack "MarioSonicSochi" "${res16by9[@]/$just720p}"
|
||||
std_respack "MarioTennis" "${res16by9[@]/$just720p}"
|
||||
std_respack "MarioParty10" "${res16by9[@]/$just720p}"
|
||||
std_respack "MinecraftStory" "${res16by9[@]/$just720p}"
|
||||
std_respack "MonsterHunter3Ultimate" "${res16by9[@]/$just1080p}"
|
||||
std_respack "NBA2K13" "${res16by9[@]/$just720p}"
|
||||
std_respack "NewSuperMarioBrosU" "${res16by9[@]/$just720p}"
|
||||
|
Loading…
Reference in New Issue
Block a user