Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
another world in jucheland
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
nippon culture research center
another world in jucheland
Commits
9328e812
Commit
9328e812
authored
Mar 08, 2019
by
Chae Ho Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix #93
parent
96ba318b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
5 deletions
+21
-5
Game.cs
ISEKAI/Assets/ISEKAI_Model/Core/Game.cs
+2
-2
Prolog_2.txt
ISEKAI/Assets/ISEKAI_Model/Scripts/Prolog_2.txt
+2
-2
EventManager.cs
ISEKAI/Assets/ISEKAI_VIEW/EventManager.cs
+17
-1
No files found.
ISEKAI/Assets/ISEKAI_Model/Core/Game.cs
View file @
9328e812
...
...
@@ -68,8 +68,8 @@ namespace ISEKAI_Model
private
void
_InitEvents
()
// should add EVERY events when new event plan comes.
{
//
allEventsList.Add(new Prolog_1(this));
//
allEventsList.Add(new Prolog_2(this));
allEventsList
.
Add
(
new
Prolog_1
(
this
));
allEventsList
.
Add
(
new
Prolog_2
(
this
));
allEventsList
.
Add
(
new
ReturnWarning
(
this
));
...
...
ISEKAI/Assets/ISEKAI_Model/Scripts/Prolog_2.txt
View file @
9328e812
Load Background "Background\Darkforest"
Load Background "Background\Darkforest"
Play Music "BGM\Silentforest"
# "마음이 같아서는 당장 여자를 붙잡고 무슨 말이냐 물어보고 싶었지만, 대신 나는 침묵을 유지한채 다시 여자를 등에 엎고 길을 걸어가기 시작했다。"
# "내가 모르는 상황일 수록 침착해지지 않으면 안됬다。냉정하게 상황을 파악한 뒤 행동을 취해야 했다。"
...
...
@@ -113,4 +113,4 @@ Load Character "Character\Rancher\a\frown" -right
## "나" "「정말 감사합니다。」"
## "작업반장 동지" "「허허, 어차피 쟝 동무 같은 건장한 쓰나이 한명이면 일손이 느니 좋은거지메。나랑 통계원 동무가 필요한 서류 같은 걸 준비를 하는 동안 여기 내 딸내미에게 부락에 대한 설명이나 들어보기오。」" -center
Load Character "Character\Heroine\a\embarassed" -left
## "선녀" "「아, 알겠슴메, 아바이! 쟝 동무, 어서 따라오습세다!」"
\ No newline at end of file
## "선녀" "「아, 알겠슴메, 아바이! 쟝 동무, 어서 따라오습세다!」" -left
\ No newline at end of file
ISEKAI/Assets/ISEKAI_VIEW/EventManager.cs
View file @
9328e812
...
...
@@ -47,6 +47,7 @@ public class EventManager : MonoBehaviour
public
Button
NextButton
;
public
bool
isNextButtonActive
=
true
;
public
SpriteLocation
characterBrightNum
=
SpriteLocation
.
None
;
public
GameObject
UIButton
;
public
GameObject
UIScript
;
...
...
@@ -100,7 +101,17 @@ public class EventManager : MonoBehaviour
}
else
{
_ExecuteCommand
(
scriptEnumerator
.
Current
);
Command
c
=
scriptEnumerator
.
Current
;
if
(
c
.
commandNumber
==
2
)
_setBright
(
characterBrightNum
);
else
_setBright
(
SpriteLocation
.
None
);
_ExecuteCommand
(
c
);
if
(
c
.
commandNumber
!=
1
)
{
characterBrightNum
=
SpriteLocation
.
None
;
_setBright
(
characterBrightNum
);
}
}
}
...
...
@@ -301,7 +312,12 @@ public class EventManager : MonoBehaviour
textCharacterInfo
.
text
=
conversation
.
characterName
;
textScript
.
text
=
conversation
.
contents
;
if
(
conversation
.
brightCharacter
!=
SpriteLocation
.
None
)
{
_setBright
(
conversation
.
brightCharacter
);
characterBrightNum
=
conversation
.
brightCharacter
;
}
else
_setBright
(
SpriteLocation
.
None
);
foreach
(
Transform
child
in
scriptText
.
transform
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment