※この翻訳ドキュメントはスクリプトによって出力・同期されています。内容が怪しそうな場合はGitHubにissueを追加したり英語の原文の確認をお願いします。
animation_scale_x_from_center と animation_scale_y_from_center のインターフェイス¶
このページではanimation_scale_x_from_center
とanimation_scale_y_from_center
メソッドの各インターフェイスについて説明します。
各インターフェイスの概要¶
animation_scale_x_from_center
メソッドのインターフェイスはap.AnimationScaleXFromCenter
クラスのインスタンスを生成します。そのインスタンスを使って中央座標を基準としたX軸方向の拡縮のアニメーションを設定することができます。
同様にanimation_scale_y_from_center
メソッドのインターフェイスではap.AnimationScaleYFromCenter
クラスのインスタンスを生成します。そのインスタンスを使ってY軸方向の拡縮のアニメーションを設定することができます。
これらのインターフェイスはscale_x_from_center
やscale_y_from_center
などのインターフェイスを持つRectangle
やCircle
などのGraphicsBase
のサブクラス上に存在します。
基本的な使い方¶
以下のコード例ではX軸方向の拡縮(1.0から2.0)のアニメーションをanimation_scale_x_from_center
メソッドを使って左側の四角に設定しています。同様にY軸方向の拡縮のアニメーションを右側の四角に設定しています。
from enum import Enum
from typing_extensions import TypedDict
import apysc as ap
DURATION: int = 1000
EASING: ap.Easing = ap.Easing.EASE_OUT_QUINT
class Direction(Enum):
X = 1
Y = 2
class Options(TypedDict):
direction: Direction
def on_animation_complete_1(
e: ap.AnimationEvent[ap.Rectangle], options: Options
) -> None:
"""
The handler that the animation calls when its end.
Parameters
----------
e : AnimationEvent
Event instance.
options : dict
Optional arguments dictionary.
"""
rectangle: ap.Rectangle = e.this.target
SCALE: float = 1.0
if options["direction"] == Direction.X:
rectangle.animation_scale_x_from_center(
scale_x_from_center=SCALE,
duration=DURATION,
easing=EASING,
).animation_complete(
on_animation_complete_2,
options=options,
).start()
elif options["direction"] == Direction.Y:
rectangle.animation_scale_y_from_center(
scale_y_from_center=SCALE,
duration=DURATION,
easing=EASING,
).animation_complete(
on_animation_complete_2,
options=options,
).start()
def on_animation_complete_2(
e: ap.AnimationEvent[ap.Rectangle], options: Options
) -> None:
"""
The handler that the animation calls when its end.
Parameters
----------
e : AnimationEvent
Event instance.
options : dict
Optional arguments dictionary.
"""
rectangle: ap.Rectangle = e.this.target
SCALE: float = 2.0
if options["direction"] == Direction.X:
rectangle.animation_scale_x_from_center(
scale_x_from_center=SCALE,
duration=DURATION,
easing=EASING,
).animation_complete(
on_animation_complete_1,
options=options,
).start()
elif options["direction"] == Direction.Y:
rectangle.animation_scale_y_from_center(
scale_y_from_center=SCALE,
duration=DURATION,
easing=EASING,
).animation_complete(
on_animation_complete_1,
options=options,
).start()
ap.Stage(
stage_width=250,
stage_height=150,
background_color=ap.Color("#333"),
stage_elem_id="stage",
)
sprite: ap.Sprite = ap.Sprite()
sprite.graphics.begin_fill(color=ap.Color("#0af"))
left_rectangle: ap.Rectangle = sprite.graphics.draw_rect(
x=50, y=50, width=50, height=50
)
right_rectangle: ap.Rectangle = sprite.graphics.draw_rect(
x=150, y=50, width=50, height=50
)
options: Options = {"direction": Direction.X}
left_rectangle.animation_scale_x_from_center(
scale_x_from_center=2.0,
duration=DURATION,
easing=EASING,
).animation_complete(
on_animation_complete_1,
options=options,
).start()
options = {"direction": Direction.Y}
right_rectangle.animation_scale_y_from_center(
scale_y_from_center=2.0,
duration=DURATION,
easing=EASING,
).animation_complete(
on_animation_complete_1,
options=options,
).start()
ap.save_overall_html(dest_dir_path="./animation_scale_x_and_y_from_center_basic_usage/")
animation_scale_x_from_center API¶
特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。
[インターフェイスの構造] animation_scale_x_from_center(self, *, scale_x_from_center: Union[float, apysc._type.number.Number], duration: Union[int, apysc._type.int.Int] = 3000, delay: Union[int, apysc._type.int.Int] = 0, easing: apysc._animation.easing.Easing = <Easing.LINEAR: 'function(x) {return x;}'>) -> apysc._animation.animation_scale_x_from_center.AnimationScaleXFromCenter
[インターフェイス概要]
中央座標を基準としたX軸の拡縮アニメーションを設定します。
[引数]
scale_x_from_center
: Number or floatX軸の拡縮のアニメーションの最終値。
duration
: Int or int, default 3000アニメーション完了までのミリ秒。
delay
: Int or int, default 0アニメーション開始までの遅延時間のミリ秒。
easing
: Easing, default Easing.LINEARイージング設定。
[返却値]
animation_scale_x_from_center
: AnimationScaleXFromCenter生成されたアニメーションのインスタンス。
[特記事項]
アニメーションを開始するには返却されたインスタンスのstart
メソッドを呼び出す必要があります。
[コードサンプル]
>>> import apysc as ap
>>> stage: ap.Stage = ap.Stage()
>>> sprite: ap.Sprite = ap.Sprite()
>>> sprite.graphics.begin_fill(color=ap.Color("#0af"))
>>> rectangle: ap.Rectangle = sprite.graphics.draw_rect(
... x=50, y=50, width=50, height=50
... )
>>> _ = rectangle.animation_scale_x_from_center(
... scale_x_from_center=0.5,
... duration=1500,
... easing=ap.Easing.EASE_OUT_QUINT,
... ).start()
[関連資料]
animation_scale_y_from_center API¶
特記事項: このAPIドキュメントはドキュメントビルド用のスクリプトによって自動で生成・同期されています。そのためもしかしたらこの節の内容は前節までの内容と重複している場合があります。
[インターフェイスの構造] animation_scale_y_from_center(self, *, scale_y_from_center: Union[float, apysc._type.number.Number], duration: Union[int, apysc._type.int.Int] = 3000, delay: Union[int, apysc._type.int.Int] = 0, easing: apysc._animation.easing.Easing = <Easing.LINEAR: 'function(x) {return x;}'>) -> apysc._animation.animation_scale_y_from_center.AnimationScaleYFromCenter
[インターフェイス概要]
中央座標を基準としたY軸の拡縮アニメーションを設定します。
[引数]
scale_y_from_center
: Number or floatY軸の拡縮のアニメーションの最終値。
duration
: Int or int, default 3000アニメーション完了までのミリ秒。
delay
: Int or int, default 0アニメーション開始までの遅延時間のミリ秒。
easing
: Easing, default Easing.LINEARイージング設定。
[返却値]
animation_scale_y_from_center
: AnimationScaleYFromCenter生成されたアニメーションのインスタンス。
[特記事項]
アニメーションを開始するには返却されたインスタンスのstart
メソッドを呼び出す必要があります。
[コードサンプル]
>>> import apysc as ap
>>> stage: ap.Stage = ap.Stage()
>>> sprite: ap.Sprite = ap.Sprite()
>>> sprite.graphics.begin_fill(color=ap.Color("#0af"))
>>> rectangle: ap.Rectangle = sprite.graphics.draw_rect(
... x=50, y=50, width=50, height=50
... )
>>> _ = rectangle.animation_scale_y_from_center(
... scale_y_from_center=0.5,
... duration=1500,
... easing=ap.Easing.EASE_OUT_QUINT,
... ).start()
[関連資料]