<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>macaroni-works notes&#187; BetweenAS3</title>
	<atom:link href="http://blog.macaroniworks.net/tag/betweenas3/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.macaroniworks.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 16 Feb 2011 07:27:11 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>BetweenAS3 イージングについて</title>
		<link>http://blog.macaroniworks.net/2009/08/betweenas3-%e3%82%a4%e3%83%bc%e3%82%b8%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/</link>
		<comments>http://blog.macaroniworks.net/2009/08/betweenas3-%e3%82%a4%e3%83%bc%e3%82%b8%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 04:39:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BetweenAS3]]></category>
		<category><![CDATA[easing]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=831</guid>
		<description><![CDATA[BetweenASでのイージングは、第5引数にタイプ(Cubicなど）とそのプロパティ(in,outなど) を指定する形になっているみたいです。 import org.libspark.betweenas3.BetweenAS3; import org.libspark.betweenas3.easing.*; BetweenAS3.tween(test_mc, { x:100 }, null, 1.0, Cubic.easeOut).play(); なにも指定しないとlinearになるようです。 easingパッケージには以下のものがありました。 Back Bounce Circ Circular Cubic Custom Elastic Expo Exponential Linear Physical Quad Quadratic Quart Quartic Quint Quintic Sine これとeaseIn,easeOut,easeInOut,easeOutIn,になるのでしょうか？？ わかりません。]]></description>
			<content:encoded><![CDATA[<p>BetweenASでのイージングは、第5引数にタイプ(Cubicなど）とそのプロパティ(in,outなど)<br />
を指定する形になっているみたいです。</p>
<pre class="brush:as3">
import org.libspark.betweenas3.BetweenAS3;
import org.libspark.betweenas3.easing.*;
BetweenAS3.tween(test_mc, { x:100 }, null, 1.0, Cubic.easeOut).play();
</pre>
<p>なにも指定しないとlinearになるようです。<br />
easingパッケージには以下のものがありました。<br />
Back<br />
Bounce<br />
Circ<br />
Circular<br />
Cubic<br />
Custom<br />
Elastic<br />
Expo<br />
Exponential<br />
Linear<br />
Physical<br />
Quad<br />
Quadratic<br />
Quart<br />
Quartic<br />
Quint<br />
Quintic<br />
Sine
</pre>
<p>これとeaseIn,easeOut,easeInOut,easeOutIn,になるのでしょうか？？<br />
わかりません。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/08/betweenas3-%e3%82%a4%e3%83%bc%e3%82%b8%e3%83%b3%e3%82%b0%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BetweenAS3 基本</title>
		<link>http://blog.macaroniworks.net/2009/08/betweenas3-%e5%9f%ba%e6%9c%ac/</link>
		<comments>http://blog.macaroniworks.net/2009/08/betweenas3-%e5%9f%ba%e6%9c%ac/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 17:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BetweenAS3]]></category>
		<category><![CDATA[Tweener]]></category>
		<category><![CDATA[モーション]]></category>

		<guid isPermaLink="false">http://blog.macaroniworks.net/?p=828</guid>
		<description><![CDATA[いつの間にかTweenerの開発が終了していたみたいです。 Tweener大好きでした。ありがとうございました。 とはいえ、まだ使っていきます。 Tweenerの後継としてBetweenAS3を利用したいと考えています。 一番簡単と思われるサンプルです。 import org.libspark.betweenas3.BetweenAS3; BetweenAS3.tween(test_mc, {x: 100, y: 100},null,0.2).play(); Tweenerですごく便利だったDisplayShortcutsなどと同等の機能は 実装されるんでしょうか、そこが気になります。]]></description>
			<content:encoded><![CDATA[<p>いつの間にかTweenerの開発が終了していたみたいです。<br />
Tweener大好きでした。ありがとうございました。<br />
とはいえ、まだ使っていきます。</p>
<p>Tweenerの後継としてBetweenAS3を利用したいと考えています。</p>
<p>一番簡単と思われるサンプルです。</p>
<pre class="brush:as3">
import org.libspark.betweenas3.BetweenAS3;
BetweenAS3.tween(test_mc, {x: 100, y: 100},null,0.2).play();
</pre>
<p>Tweenerですごく便利だったDisplayShortcutsなどと同等の機能は<br />
実装されるんでしょうか、そこが気になります。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.macaroniworks.net/2009/08/betweenas3-%e5%9f%ba%e6%9c%ac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

