Skip to content

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rudderbucky committed Jan 17, 2020
1 parent 7b8aea2 commit 4af5a35
Show file tree
Hide file tree
Showing 21 changed files with 372 additions and 372 deletions.
7 changes: 5 additions & 2 deletions Assets/Scenes/SampleScene.unity
Original file line number Diff line number Diff line change
Expand Up @@ -5729,6 +5729,11 @@ PrefabInstance:
value:
objectReference: {fileID: 1044089125355486785, guid: 27e93d4332ff7584bb2c96969c6c0315,
type: 3}
- target: {fileID: 114424659341706264, guid: ec3b4ef72d802d7448ea4d550f88fc47,
type: 3}
propertyPath: player
value:
objectReference: {fileID: 1878101311}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: ec3b4ef72d802d7448ea4d550f88fc47, type: 3}
--- !u!1 &618609699
Expand Down Expand Up @@ -6910,8 +6915,6 @@ MonoBehaviour:
obj: {fileID: 11400000, guid: c8801550469a3d143ad093fc12424db6, type: 2}
- ID: bunker_vending_blueprint
obj: {fileID: 11400000, guid: 8a416ef974a215c4197b5a269040a75b, type: 2}
- ID: demo_enemy_shellcore
obj: {fileID: 11400000, guid: 8b9cce9b8a5c1d545b7eb9b9bd135b26, type: 2}
- ID: clip_respawn
obj: {fileID: 8300000, guid: fcdc02c551db0b94d898de488f45a1fa, type: 3}
- ID: 4 Entry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class DialogueSystem : MonoBehaviour
float nextCharacterTime;
public double timeBetweenCharacters = 0.0175d;
string text = "";
Transform playerTransform;
public PlayerCore player;
Vector3? speakerPos;
public CoreUpgraderScript upgraderScript;
private void Awake()
Expand All @@ -38,7 +38,7 @@ private void Awake()

private void Update()
{
if(window && speakerPos != null && playerTransform && (playerTransform.position - ((Vector3)speakerPos)).sqrMagnitude > 100)
if(window && speakerPos != null && player && (player.transform.position - ((Vector3)speakerPos)).sqrMagnitude > 100)
endDialogue();
// Add text
if(textRenderer && characterCount < text.Length)
Expand All @@ -52,9 +52,9 @@ private void Update()
}
}

public static void StartDialogue(Dialogue dialogue, Entity speaker = null, PlayerCore player = null)
public static void StartDialogue(Dialogue dialogue, Entity speaker = null)
{
Instance.startDialogue(dialogue, speaker, player);
Instance.startDialogue(dialogue, speaker);
}

public static void ShowPopup(string text, Color color, Entity speaker = null)
Expand All @@ -73,13 +73,17 @@ private void showPopup(string text, Color color, Entity speaker = null)
if (window && window.GetActive())
return;
if(window) endDialogue();
playerTransform = null;
//create window
speakerPos = null;

if(!speaker)
window = Instantiate(popupBoxPrefab).GetComponentInChildren<GUIWindowScripts>();
else
{
window = Instantiate(dialogueBoxPrefab).GetComponentInChildren<GUIWindowScripts>();
speakerPos = speaker.transform.position;
}

window.Activate();
window.transform.SetSiblingIndex(0);
background = window.transform.Find("Background").GetComponent<RectTransform>();
Expand Down Expand Up @@ -141,15 +145,14 @@ private void showBattleResults(bool victory) {
else window.transform.Find("Defeat").gameObject.SetActive(true);
}

public static void ShowDialogueNode(NodeEditorFramework.Standard.DialogueNode node, Entity speaker = null, PlayerCore player = null)
public static void ShowDialogueNode(NodeEditorFramework.Standard.DialogueNode node, Entity speaker = null)
{
Instance.showDialogueNode(node, speaker, player);
Instance.showDialogueNode(node, speaker);
}

private void showDialogueNode(NodeEditorFramework.Standard.DialogueNode node, Entity speaker, PlayerCore player)
private void showDialogueNode(NodeEditorFramework.Standard.DialogueNode node, Entity speaker)
{
if (window) endDialogue(0);
playerTransform = player ? player.transform : null;
//speakerPos = speaker.transform.position;
//create window
window = Instantiate(dialogueBoxPrefab).GetComponentInChildren<GUIWindowScripts>();
Expand Down Expand Up @@ -200,15 +203,14 @@ private void showDialogueNode(NodeEditorFramework.Standard.DialogueNode node, En
}
}

public static void ShowTaskPrompt(NodeEditorFramework.Standard.StartTaskNode node, Entity speaker = null, PlayerCore player = null)
public static void ShowTaskPrompt(NodeEditorFramework.Standard.StartTaskNode node, Entity speaker = null)
{
Instance.showTaskPrompt(node, speaker, player);
Instance.showTaskPrompt(node, speaker);
}

private void showTaskPrompt(NodeEditorFramework.Standard.StartTaskNode node, Entity speaker, PlayerCore player) //TODO: reward part image
private void showTaskPrompt(NodeEditorFramework.Standard.StartTaskNode node, Entity speaker) //TODO: reward part image
{
if (window) endDialogue(0, false);
playerTransform = player ? player.transform : null;
//speakerPos = speaker.transform.position;
//create window
window = Instantiate(taskDialogueBoxPrefab).GetComponentInChildren<GUIWindowScripts>();
Expand All @@ -230,6 +232,9 @@ private void showTaskPrompt(NodeEditorFramework.Standard.StartTaskNode node, Ent
nextCharacterTime = (float)(Time.time + timeBetweenCharacters);
textRenderer.color = node.dialogueColor;

// update speakerPos
if(speaker) speakerPos = speaker.transform.position;

// Objective list
var objectiveList = background.transform.Find("ObjectiveList").GetComponent<Text>();
objectiveList.text = node.objectiveList;
Expand Down Expand Up @@ -310,10 +315,9 @@ private void showTaskPrompt(NodeEditorFramework.Standard.StartTaskNode node, Ent
}
}

private void startDialogue(Dialogue dialogue, Entity speaker, PlayerCore player)
private void startDialogue(Dialogue dialogue, Entity speaker)
{
if(window) endDialogue();
playerTransform = player ? player.transform : null;
speakerPos = speaker.transform.position;
//create window
window = Instantiate(dialogueBoxPrefab).GetComponentInChildren<GUIWindowScripts>();
Expand All @@ -324,15 +328,15 @@ private void startDialogue(Dialogue dialogue, Entity speaker, PlayerCore player)
textRenderer = background.transform.Find("Text").GetComponent<Text>();
textRenderer.font = shellcorefont;

next(dialogue, 0, speaker, player);
next(dialogue, 0, speaker);
}

public static void Next(Dialogue dialogue, int ID, Entity speaker, PlayerCore player)
public static void Next(Dialogue dialogue, int ID, Entity speaker)
{
Instance.next(dialogue, ID, speaker, player);
Instance.next(dialogue, ID, speaker);
}

public void next(Dialogue dialogue, int ID, Entity speaker, PlayerCore player)
public void next(Dialogue dialogue, int ID, Entity speaker)
{
if(dialogue.nodes.Count == 0)
{
Expand Down Expand Up @@ -430,7 +434,7 @@ public void next(Dialogue dialogue, int ID, Entity speaker, PlayerCore player)
button.SetParent(background, false);
button.anchoredPosition = new Vector2(0, 24 + 16 * (current.nextNodes.Count - (i + 1)));
button.GetComponent<Button>().onClick.AddListener(()=> {
Next(dialogue, nextIndex, speaker, player);
Next(dialogue, nextIndex, speaker);
});
if(dialogue.nodes[nextIndex].action != Dialogue.DialogueAction.Exit) {
button.GetComponent<Button>().onClick.AddListener(()=> {
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Graphs/DialogueNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void OnClick(int index)

public override int Traverse()
{
DialogueSystem.ShowDialogueNode(this, TaskManager.GetSpeaker(), null);
DialogueSystem.ShowDialogueNode(this, TaskManager.GetSpeaker());
DialogueSystem.OnDialogueEnd += OnClick;
return -1;
}
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Graphs/FinishTaskNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void SetEntityName(string newName)

public void OnDialogue()
{
DialogueSystem.ShowPopup(rewardText, textColor, TaskManager.GetSpeaker());
DialogueSystem.ShowPopup(rewardText, textColor, SectorManager.instance.GetObject(rewardGiverName).GetComponent<Entity>());
DialogueSystem.OnDialogueEnd = (int _) =>
{
TaskManager.Instance.setNode(outputRight);
Expand Down
9 changes: 1 addition & 8 deletions Assets/Scripts/Graphs/FollowNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,7 @@ public override int Traverse()

if (!stopFollowing)
{
Entity target = null;
for (int i = 0; i < AIData.entities.Count; i++)
{
if (AIData.entities[i].name == targetName)
{
target = AIData.entities[i];
}
}
Entity target = SectorManager.instance.GetObject(targetName).GetComponent<Entity>();
if (target != null)
{
for (int i = 0; i < AIData.entities.Count; i++)
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/Graphs/StartTaskNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public void OnClick(int index)

public override int Traverse()
{
DialogueSystem.ShowTaskPrompt(this);
DialogueSystem.ShowTaskPrompt(this, TaskManager.GetSpeaker());
DialogueSystem.OnDialogueEnd += OnClick;
return -1;
}
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/HUD Scripts/ProximityInteractScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void ActivateInteraction(Entity ent) {
TaskManager.interactionOverrides[ent.name].Invoke();
}
else
DialogueSystem.StartDialogue(ent.dialogue, ent, player);
DialogueSystem.StartDialogue(ent.dialogue, ent);
}
void Update() {
if(player != null)
Expand Down
2 changes: 1 addition & 1 deletion Assets/Scripts/HUD Scripts/ReticleScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private void FindTarget() {
TaskManager.interactionOverrides[curTarg.GetName()].Invoke();
}
else if (curTarg.GetDialogue() as Dialogue)
DialogueSystem.StartDialogue(curTarg.GetDialogue() as Dialogue, curTarg as Entity, craft);
DialogueSystem.StartDialogue(curTarg.GetDialogue() as Dialogue, curTarg as Entity);
}

targSys.SetTarget(curTarg.GetTransform()); // set the target to the clicked craft's transform
Expand Down
Binary file modified Assets/Sound Files/Music/FlightWish_-_SC_EP1_Overworld.wav
Binary file not shown.
2 changes: 1 addition & 1 deletion Assets/StreamingAssets/Sectors/main/Danger Zone 0-0.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"sectorjson":"{\"sectorName\":\"Danger Zone 0-0\",\"bounds\":{\"x\":-120,\"y\":330,\"w\":610,\"h\":150},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platform\":{\"instanceID\":-179954},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\"}","platformjson":"{\"prefabs\":[\"New Junction\",\"New 2 Entry\"],\"rows\":15,\"columns\":61,\"tilemap\":[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1],\"rotations\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}"}
{"sectorjson":"{\"sectorName\":\"Danger Zone 0-0\",\"bounds\":{\"x\":-120,\"y\":330,\"w\":610,\"h\":150},\"type\":3,\"backgroundColor\":{\"r\":0.6499999761581421,\"g\":0.0,\"b\":0.0,\"a\":1.0},\"entities\":[],\"platform\":{\"instanceID\":-381448},\"targets\":[],\"hasMusic\":true,\"musicID\":\"music_overworld\"}","platformjson":"{\"prefabs\":[\"New Junction\",\"New 2 Entry\"],\"rows\":15,\"columns\":61,\"tilemap\":[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1],\"rotations\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}"}
Loading

0 comments on commit 4af5a35

Please sign in to comment.