Custom pipeline plugin about how to make work together Adobe Photoshop's files with Unity Engine's sprites and sprite atlases.
The latest version can be installed via package manager using following git URL:
https://github.com/am1goo/unity-plugin-spritesheet-3000.git#0.4.5
- Install extentions via Unity Editor menu
in top menu find and clickSpritesheet 3000 -> Install extensions -> Adobe Photoshop CC
or
-
Install extentions by yourself
in top menu find and clickSpritesheet 3000 -> Open extensions folder -> Adobe Photoshop CC
-
Copy folder
com.am1goo.photoshop.extension.spritesheet3000
intoC:\Program Files\Common Files\Adobe\CEP\extensions\
(for Windows x64)
or
intoC:\Program Files (x86)\Common Files\Adobe\CEP\extensions\
(for Windows x86)
Adobe Photoshop's extensions will create some files with ease-to-use structure:
- metafile starts with source
psd filename
(heart of this plugin, contains all required meta information about future animation clip - filter type, compression, ppu and etc.) - bunch of
animation frames
as single sprites starts with metafile name (don't worry about that, these files will be skipped and don't used in runtime-mode at all, needed only in editor-mode purposes) atlas texture
as result of importing process
folder|-
|- {clipname}.txt
|- {clipname}_01.png
|- {clipname}_02.png
|- {clipname}_03.png
|- {clipname}_04.png
|- ...
|- {clipname}_xx.png
|- {clipname}_atlas.png
-
Open extension via Adoby Photoshop CC
Window -> Extensions -> Spritesheet 3000 Exporter
-
Export all frames as single files and generate metadata
Set all options and press buttonExport..
- Import frames via single metedata file
OpenUnity Editor
, select single metafile inProject
window, clickRight Mouse Button
and selectPack from file
or
- Import bunch of frames via folder
OpenUnity Editor
, select whole folder inProject
window, clickRight Mouse Button
and selectPack from folder
- Use packed frames in your game
Put componentSpriteAnimator3000
on any game object
Run any animations via code:
using Spritesheet3000;
using UnityEngine;
public class Example : MonoBehaviour
{
[SerializeField]
private SpriteAnimationClip3000 _clip;
[SerializeField]
private SpriteAnimator3000 _anim;
private void Awake()
{
_anim.Play(_clip);
}
}
- Add ability to trimming all transparent pixels from frames
- Export all frames to
UnityEngine.U2D.SpriteAtlas
file with.asset
extension
- Unity 2019.4.x
- Unity 2020.3.x
- Unity 2022.3.x
- Sin Slayers - RPG with roguelike elements set in a dark fantasy world, where your choices determine how challenging the fights and enemies will be.
Contribution in any form is very welcome. Bugs, feature requests or feedback can be reported in form of Issues.