Created
May 29, 2024 19:51
-
-
Save whoisryosuke/6fbe3df0e6ea4542f496c7b704772fd5 to your computer and use it in GitHub Desktop.
Delta iOS App Skinning Example - Bloom Filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Onyx Comic (whoisryosuke)", | |
"identifier": "com.whoisryosuke.gba.onyxcomic", | |
"gameTypeIdentifier": "com.rileytestut.delta.game.gba", | |
"debug": false, | |
"representations": { | |
"iphone": { | |
"edgeToEdge": { | |
"portrait": { | |
"assets": { | |
"small": "iphone_edgetoedge_portrait_small.png", | |
"medium": "iphone_edgetoedge_portrait_medium.png", | |
"large": "iphone_edgetoedge_portrait_large.png" | |
}, | |
"items": [ | |
{ | |
"inputs": { | |
"up": "up", | |
"down": "down", | |
"left": "left", | |
"right": "right" | |
}, | |
"frame": { | |
"x": 30, | |
"y": 564, | |
"width": 150, | |
"height": 150 | |
}, | |
"extendedEdges": { | |
"top": 30, | |
"bottom": 30, | |
"left": 30, | |
"right": 30 | |
} | |
}, | |
{ | |
"inputs": ["start"], | |
"frame": { | |
"x": 245, | |
"y": 800, | |
"width": 24, | |
"height": 24 | |
} | |
}, | |
{ | |
"inputs": ["select"], | |
"frame": { | |
"x": 125, | |
"y": 800, | |
"width": 24, | |
"height": 24 | |
} | |
}, | |
{ | |
"inputs": ["quickSave"], | |
"frame": { | |
"x": 17, | |
"y": 370, | |
"width": 109, | |
"height": 45 | |
} | |
}, | |
{ | |
"inputs": ["quickLoad"], | |
"frame": { | |
"x": 267, | |
"y": 370, | |
"width": 109, | |
"height": 45 | |
} | |
}, | |
{ | |
"inputs": ["toggleFastForward"], | |
"frame": { | |
"x": 142, | |
"y": 370, | |
"width": 109, | |
"height": 45 | |
} | |
}, | |
{ | |
"inputs": ["a"], | |
"frame": { | |
"x": 305.6, | |
"y": 571.6, | |
"width": 55, | |
"height": 55 | |
}, | |
"extendedEdges": { | |
"top": 30, | |
"bottom": 15, | |
"left": 30, | |
"right": 30 | |
} | |
}, | |
{ | |
"inputs": ["b"], | |
"frame": { | |
"x": 226.6, | |
"y": 650.6, | |
"width": 55, | |
"height": 55 | |
}, | |
"extendedEdges": { | |
"top": 30, | |
"left": 15, | |
"right": 15, | |
"bottom": 15 | |
} | |
}, | |
{ | |
"inputs": ["l"], | |
"frame": { | |
"x": 0, | |
"y": 473.5, | |
"width": 125, | |
"height": 45 | |
} | |
}, | |
{ | |
"inputs": ["r"], | |
"frame": { | |
"x": 267, | |
"y": 473.5, | |
"width": 125, | |
"height": 45 | |
} | |
}, | |
{ | |
"inputs": ["menu"], | |
"frame": { | |
"x": 179, | |
"y": 447, | |
"width": 35, | |
"height": 32 | |
}, | |
"extendedEdges": { | |
"bottom": 10, | |
"top": 10, | |
"right": 10, | |
"left": 10 | |
} | |
} | |
], | |
"mappingSize": { | |
"width": 393, | |
"height": 852 | |
}, | |
"extendedEdges": { | |
"top": 7, | |
"bottom": 7, | |
"left": 7, | |
"right": 7 | |
}, | |
"screens": [ | |
{ | |
"inputFrame": { | |
"x": 0, | |
"y": 0, | |
"width": 240, | |
"height": 160 | |
}, | |
"outputFrame": { | |
"x": 12, | |
"y": -123, | |
"width": 369, | |
"height": 247 | |
}, | |
"filters": [ | |
{ | |
"name": "CIComicEffect" | |
} | |
] | |
}, | |
{ | |
"inputFrame": { | |
"x": 0, | |
"y": 0, | |
"width": 240, | |
"height": 160 | |
}, | |
"outputFrame": { | |
"x": 12, | |
"y": 86, | |
"width": 369, | |
"height": 247 | |
}, | |
"filters": [ | |
{ | |
"name": "CIBloom", | |
"parameters": { | |
"inputRadius": 10.0, | |
"inputIntensity": 0.5 | |
} | |
} | |
] | |
} | |
] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment