├── .gitignore ├── Assets ├── Demo.unity ├── Demo.unity.meta ├── Material.meta ├── Material │ ├── FlipBookMat.mat │ └── FlipBookMat.mat.meta ├── Script.meta ├── Script │ ├── FlipBook.cs │ └── FlipBook.cs.meta ├── Shader.meta ├── Shader │ ├── FlipBookShader.shader │ └── FlipBookShader.shader.meta ├── Texture.meta └── Texture │ ├── Page1.jpg │ ├── Page1.jpg.meta │ ├── Page2.png │ ├── Page2.png.meta │ ├── Page3.png │ └── Page3.png.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Demo.unity -------------------------------------------------------------------------------- /Assets/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/Material.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Material.meta -------------------------------------------------------------------------------- /Assets/Material/FlipBookMat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Material/FlipBookMat.mat -------------------------------------------------------------------------------- /Assets/Material/FlipBookMat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Material/FlipBookMat.mat.meta -------------------------------------------------------------------------------- /Assets/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Script.meta -------------------------------------------------------------------------------- /Assets/Script/FlipBook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Script/FlipBook.cs -------------------------------------------------------------------------------- /Assets/Script/FlipBook.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Script/FlipBook.cs.meta -------------------------------------------------------------------------------- /Assets/Shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Shader.meta -------------------------------------------------------------------------------- /Assets/Shader/FlipBookShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Shader/FlipBookShader.shader -------------------------------------------------------------------------------- /Assets/Shader/FlipBookShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Shader/FlipBookShader.shader.meta -------------------------------------------------------------------------------- /Assets/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture.meta -------------------------------------------------------------------------------- /Assets/Texture/Page1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture/Page1.jpg -------------------------------------------------------------------------------- /Assets/Texture/Page1.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture/Page1.jpg.meta -------------------------------------------------------------------------------- /Assets/Texture/Page2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture/Page2.png -------------------------------------------------------------------------------- /Assets/Texture/Page2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture/Page2.png.meta -------------------------------------------------------------------------------- /Assets/Texture/Page3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture/Page3.png -------------------------------------------------------------------------------- /Assets/Texture/Page3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/Assets/Texture/Page3.png.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenjd/Unity-Flip-Book-With-Shader/HEAD/README.md --------------------------------------------------------------------------------