# Spine 런타임 가이드

이 가이드는 Spine 런타임을 사용하여 응용 프로그램에서 스켈레톤을 로드, 렌더링 및 조작하는 방법을 알려줍니다.

<form method="get" action="http://www.google.co.kr/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="Google을 사용하여 Spine 런타임 가이드 검색" 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.kr/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:ko.esotericsoftware.com "런타임 가이드" ' + $("#runtimes-guide-q").val());
	$("#google").submit();
}
</script>