選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
Ivan "KaiSD" Korystin d5bed01a78 Add support for multiple actions for one actor. #1 9年前
Assets Add support for multiple actions for one actor. #1 9年前
.gitignore Added the solution file. 10年前
Assembly-CSharp-vs.csproj Reconfigured the solution. 10年前
Assembly-CSharp.csproj Reconfigured the solution. 10年前
README.md Add support for multiple actions for one actor. #1 9年前
coa4u-csharp.sln Reconfigured the solution. 10年前
coa4u.sln Reconfigured the solution. 10年前

README.md

coa4u

Cocos2d-like Actions for Unity3d

Unity3d is a very good game engine. It's almost perfect for quick prototyping. After switching from Cocos2D to Unity3d, i'm still missing just one cocos's feature - actions. It's a great combination of simplicity and flexibility, and i haven't found the suitable replacement for it. Since actions are quite simple, i implemented them myself.

How to use

  1. Place the coa4u folder from Assets/scripts in your Assets/scripts folder.
  2. Then attach the Actor.cs script to the object you want.
  3. See the ActorSampleActions.cs class, if you need examples.

You can also add actions on the fly, by using the AttachAction method of the Actor class.

Included actions (ready and WIP)

All actions are capable to work both in 3D (use Vector3) and 2D (use Vector2) scenes.

Base actions

  • Sequence
  • Parallel
  • Repeat and Loop implemented in one action

Every reversable action has a reverse() method. So, no plans for Reverse action right now.

Interval actions

  • Delay and RandomDelay implemented in one action
  • MoveTo
  • MoveBy
  • RotateTo
  • RotateBy
  • ScaleTo
  • ScaleBy
  • BezierAbs
  • BezierRel
  • JumpTo uses Bezier action to move the object
  • JumpBy uses Bezier action to move the object
  • Blink

if you want to manipulate alpha with the following actions, your material should support transparency (i.e. use Transparent shader)

  • TintBy
  • TintTo
  • FadeOut
  • FadeIn
  • FadeTo
  • FadeBy

Instant actions

  • Place renamed to SetPlace
  • CallFunc renamed to SendMessage
  • Hide
  • Show
  • ToggleVisibility

There's no plans for 3DGrid actions. You can use the 3D actions instead.

Some additional actions

Base actions

  • Random - randomly choises and does one action from the given list.

Interval actions

  • Follow - follows another actor with the given speed for the given amount of time (of forever).
  • LookAt - rotates the object to look at the given actor.

Instant actions

  • SetRotation - instantly rotates the object to the given euler angles.
  • SetTint - instantly tints the object to the given color.
  • SetDirection - instantly rotates the object to look at the given actor.
  • Stop - stops all actions for this object.

Future plans

After completing these actions, i'm going to add some more to the list.

License

Just like Cocos2D, this code licensed under the MIT License

Help and donations

I'm not doing it to make profit, but if you want, you can send me a couple of bucks via PayPal.

Also, if you'll write some action based on mine, feel free to send it to me, if you want me to add it to the library. I'll put your name on this page.