mirror of
https://github.com/Buriburizaem0n/live2d.git
synced 2026-06-21 01:00:40 +00:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
isset($_GET['id']) ? $id = $_GET['id'] : exit('error');
|
||||
|
||||
require '../tools/modelList.php';
|
||||
require '../tools/modelTextures.php';
|
||||
require '../tools/jsonCompatible.php';
|
||||
|
||||
$modelList = new modelList();
|
||||
$modelTextures = new modelTextures();
|
||||
$jsonCompatible = new jsonCompatible();
|
||||
|
||||
$id = explode('-', $id);
|
||||
$modelId = (int)$id[0];
|
||||
$modelTexturesId = isset($id[1]) ? (int)$id[1] : 0;
|
||||
|
||||
$modelName = $modelList->id_to_name($modelId);
|
||||
$modelTexturesList = is_array($modelName) ? array('textures' => $modelName) : $modelTextures->get_list($modelName);
|
||||
$modelTexturesNewId = $modelTexturesId == 0 ? 2 : $modelTexturesId + 1;
|
||||
if (!isset($modelTexturesList['textures'][$modelTexturesNewId-1])) $modelTexturesNewId = 1;
|
||||
|
||||
header("Content-type: application/json");
|
||||
echo $jsonCompatible->json_encode(array('textures' => array(
|
||||
'id' => $modelTexturesNewId,
|
||||
'name' => $modelTexturesList['textures'][$modelTexturesNewId-1],
|
||||
'model' => is_array($modelName) ? $modelName[$modelTexturesNewId-1] : $modelName
|
||||
)));
|
||||
Reference in New Issue
Block a user