Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
732 changes: 621 additions & 111 deletions ProgrammerTeam20181024/Assets/Scenes/SampleScene.unity

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions ProgrammerTeam20181024/Assets/Story1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
using System.Collections;
using UnityEngine;
using UnityEngine.U2D;
using UnityEngine.UI;

public class Story1 : MonoBehaviour
{
[SerializeField] UnityEngine.UI.Text textbox;
[SerializeField] Image body, face;

[SerializeField] SpriteAtlas atlas;

IEnumerator Start()
{
textbox.text = "衝撃のファーストブリット";

face.sprite = atlas.GetSprite("sample_4");
yield return new WaitUntil(() => Input.GetMouseButtonDown(0));
yield return null;

face.sprite = atlas.GetSprite("sample_5");
textbox.text = "撃滅のセカンドブリット";
yield return new WaitUntil(() => Input.GetMouseButtonDown(0));
yield return null;

face.sprite = atlas.GetSprite("sample_4");
textbox.text = "抹殺のラストブリット";
}
}
11 changes: 11 additions & 0 deletions ProgrammerTeam20181024/Assets/Story1.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added ProgrammerTeam20181024/Assets/base.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
99 changes: 99 additions & 0 deletions ProgrammerTeam20181024/Assets/base.jpg.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions ProgrammerTeam20181024/Assets/normal.spriteatlas
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!687078895 &4343727234628468602
SpriteAtlas:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInternal: {fileID: 0}
m_Name: normal
m_EditorData:
serializedVersion: 2
textureSettings:
serializedVersion: 2
anisoLevel: 1
compressionQuality: 50
maxTextureSize: 2048
textureCompression: 0
filterMode: 1
generateMipMaps: 0
readable: 0
crunchedCompression: 0
sRGB: 1
platformSettings: []
packingSettings:
serializedVersion: 2
padding: 4
blockOffset: 1
allowAlphaSplitting: 0
enableRotation: 1
enableTightPacking: 1
variantMultiplier: 1
packables:
- {fileID: 102900000, guid: d112af5942cd0f844a1f3b81a73cb545, type: 3}
bindAsDefault: 1
m_MasterAtlas: {fileID: 0}
m_PackedSprites: []
m_PackedSpriteNamesToIndex: []
m_Tag: normal
m_IsVariant: 0
8 changes: 8 additions & 0 deletions ProgrammerTeam20181024/Assets/normal.spriteatlas.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added ProgrammerTeam20181024/Assets/sample.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading