mirror of
https://github.com/evgen-app/steampunk-quest.git
synced 2024-12-04 05:43:43 +03:00
commit
d56055b13c
File diff suppressed because it is too large
Load Diff
|
@ -10,6 +10,7 @@ public class AudioPlayer : MonoBehaviour
|
|||
private bool _play;
|
||||
void Awake()
|
||||
{
|
||||
Debug.Log("fuck you");
|
||||
_audioPlayer = gameObject.GetComponent<AudioSource>();
|
||||
_stopsCommits = new List<AudioPlayerStopsCommit>();
|
||||
}
|
||||
|
|
|
@ -18,10 +18,7 @@ public static class DialogData{
|
|||
"Подробности высланы вам на почту, проверьте",
|
||||
Roles.CAPTAIN,
|
||||
Resources.Load<AudioClip>("audio/капитан/подробности высланы")
|
||||
)
|
||||
};
|
||||
|
||||
public static DialogDataClass[] SecondSceneFirstAction = {
|
||||
),
|
||||
new DialogDataClass(
|
||||
"Файл доставлен, в нем обнаружены повреждения",
|
||||
Roles.VOICE_ASSISTANT,
|
||||
|
@ -33,6 +30,10 @@ public static class DialogData{
|
|||
Resources.Load<AudioClip>("audio/пилот/о черт, опять этот баг")
|
||||
)
|
||||
};
|
||||
|
||||
public static DialogDataClass[] SecondSceneFirstAction = {
|
||||
|
||||
};
|
||||
public static DialogDataClass[] SecondSceneSecondAction = {
|
||||
new DialogDataClass(
|
||||
"В этот раз файл поврежден очень сильно, надо его открыть и посмотреть что в нем сохранилось",
|
||||
|
|
|
@ -15,6 +15,10 @@ public class DialogPlayer : MonoBehaviour
|
|||
|
||||
int _idx = 0;
|
||||
Replica _currentReplica;
|
||||
bool _isDialogPlaying = true;
|
||||
bool getIsDialogPlaying(){
|
||||
return _isDialogPlaying;
|
||||
}
|
||||
|
||||
void changeDialogData(DialogDataClass[] dialogData){
|
||||
_dialogData = dialogData;
|
||||
|
@ -69,7 +73,9 @@ public class DialogPlayer : MonoBehaviour
|
|||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
if (_idx >= _dialogData.Length-1) return;
|
||||
if (_idx >= _dialogData.Length-1) {
|
||||
_isDialogPlaying = false;
|
||||
}
|
||||
if (_currentReplica.getIsEnded()) {
|
||||
_idx++;
|
||||
_currentReplica = createReplica();
|
||||
|
|
Loading…
Reference in New Issue
Block a user