# Spineランタイムガイド

このガイドはSpineランタイムを使用してアプリケーション内でスケルトンをロード、レンダリング、操作する方法を説明します。

<form method="get" action="http://www.google.co.jp/search" class="support-form forms" id="runtimes-guide-form" style="margin-bottom:-0.5em">
<fieldset>
	<legend>検索</legend>
	<table class="layout layout-form"><tr>
	<td class="btn-group">
		<input type="text" id="runtimes-guide-q" maxlength="128" title="Search the Spine Runtimes Guide using Google" class="input-search">
		<button class="btn btn-round" onclick="googleRuntimesGuide(); return false"><span class="iconfont-search"></span></button>
	</td>
	</tr></table>
</fieldset>
</form>

!!* [ランタイムアーキテクチャ](/spine-runtime-architecture)
* [スケルトンデータのロード](/spine-loading-skeleton-data)
* [アニメーションの適用](/spine-applying-animations)
* [ランタイムスケルトン](/spine-runtime-skeletons)
* [ランタイムスキン](/spine-runtime-skins)
* [API リファレンス](/spine-api-reference)

<form method="get" action="http://www.google.co.jp/search" id="google" style="display:none">
<input type="hidden" name="q" id="google-q">
</form>

<script>
$("#runtimes-guide-form").submit(function() {
	if (e.which == 13) {
		googleRuntimesGuide();
		return false;
	}
});
function googleRuntimesGuide () {
	$("#google-q").val('site:ja.esotericsoftware.com "Spine Runtimes ガイド" ' + $("#runtimes-guide-q").val());
	$("#google").submit();
}
</script>