Commit e5a33e2c authored by PACS Peramune 's avatar PACS Peramune

Update

parent be4863a0
fileFormatVersion: 2
guid: 718ef73cfdb42dd4a95955a276847ffc
TrueTypeFontImporter:
externalObjects: {}
serializedVersion: 4
fontSize: 16
forceTextureCase: -2
characterSpacing: 0
characterPadding: 1
includeFontData: 1
fontNames:
- Drift Wood
fallbackFontReferences: []
customCharacters:
fontRenderingMode: 0
ascentCalculationMode: 1
useLegacyBoundsCalculation: 0
shouldRoundAdvanceValue: 1
userData:
assetBundleName:
assetBundleVariant:
...@@ -19,27 +19,30 @@ public class QuizManager : MonoBehaviour ...@@ -19,27 +19,30 @@ public class QuizManager : MonoBehaviour
int totalQuestions = 0; int totalQuestions = 0;
public int score; public int score;
//Start game
private void Start() private void Start()
{ {
Screen.SetResolution(1920, 1080, FullScreenMode.ExclusiveFullScreen, 60);
totalQuestions = QnA.Count; totalQuestions = QnA.Count;
GOPanel.SetActive(false); GOPanel.SetActive(false);
generateQuestion(); generateQuestion();
} }
//Go to the start
public void retry() public void retry()
{ {
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex); SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
} }
//Finish game
public void GameOver() public void GameOver()
{ {
Quizpanel.SetActive(false); Quizpanel.SetActive(false);
GOPanel.SetActive(true); GOPanel.SetActive(true);
ScoreTxt.text = score.ToString() +" Score"; ScoreTxt.text = score.ToString() +" Score";
} }
//If the answer is correct
public void correct() public void correct()
{ {
score += 1; score += 1;
...@@ -47,12 +50,14 @@ public class QuizManager : MonoBehaviour ...@@ -47,12 +50,14 @@ public class QuizManager : MonoBehaviour
generateQuestion(); generateQuestion();
} }
//If the answer is wrong
public void wrong() public void wrong()
{ {
QnA.RemoveAt(currentQuestion); QnA.RemoveAt(currentQuestion);
generateQuestion(); generateQuestion();
} }
void SetAnswers() void SetAnswers()
{ {
for(int i = 0; i < options.Length; i++) for(int i = 0; i < options.Length; i++)
...@@ -67,6 +72,7 @@ public class QuizManager : MonoBehaviour ...@@ -67,6 +72,7 @@ public class QuizManager : MonoBehaviour
} }
} }
//Randomly choose next questioon
void generateQuestion() void generateQuestion()
{ {
if(QnA.Count > 0) if(QnA.Count > 0)
......
...@@ -132,6 +132,8 @@ GameObject: ...@@ -132,6 +132,8 @@ GameObject:
serializedVersion: 6 serializedVersion: 6
m_Component: m_Component:
- component: {fileID: 114978524} - component: {fileID: 114978524}
- component: {fileID: 114978526}
- component: {fileID: 114978525}
m_Layer: 5 m_Layer: 5
m_Name: GOPanel m_Name: GOPanel
m_TagString: Untagged m_TagString: Untagged
...@@ -157,11 +159,49 @@ RectTransform: ...@@ -157,11 +159,49 @@ RectTransform:
m_Father: {fileID: 512842809} m_Father: {fileID: 512842809}
m_RootOrder: 2 m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 100, y: 100} m_SizeDelta: {x: -2282, y: -770}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &114978525
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 114978523}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Material: {fileID: 0}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_RaycastTarget: 1
m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
m_Maskable: 1
m_OnCullStateChanged:
m_PersistentCalls:
m_Calls: []
m_Sprite: {fileID: 21300000, guid: c5b92f7d2cb76de4b9f4dd25cc204019, type: 3}
m_Type: 0
m_PreserveAspect: 0
m_FillCenter: 1
m_FillMethod: 4
m_FillAmount: 1
m_FillClockwise: 1
m_FillOrigin: 0
m_UseSpriteMesh: 0
m_PixelsPerUnitMultiplier: 1
--- !u!222 &114978526
CanvasRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 114978523}
m_CullTransparentMesh: 1
--- !u!1 &403505993 --- !u!1 &403505993
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
...@@ -199,7 +239,7 @@ RectTransform: ...@@ -199,7 +239,7 @@ RectTransform:
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 235} m_AnchoredPosition: {x: 0, y: 235}
m_SizeDelta: {x: 1700, y: 400} m_SizeDelta: {x: 1836, y: 338}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &403505995 --- !u!114 &403505995
MonoBehaviour: MonoBehaviour:
...@@ -292,8 +332,8 @@ RectTransform: ...@@ -292,8 +332,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: -430, y: -329.99997} m_AnchoredPosition: {x: -480.94995, y: -271.99997}
m_SizeDelta: {x: 840, y: 220} m_SizeDelta: {x: 880.1, y: 176.79999}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &445431542 --- !u!114 &445431542
MonoBehaviour: MonoBehaviour:
...@@ -452,8 +492,8 @@ RectTransform: ...@@ -452,8 +492,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 5.6000366}
m_SizeDelta: {x: 1086.9, y: 863.2} m_SizeDelta: {x: 1071.3, y: 803.3999}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &456588942 --- !u!114 &456588942
MonoBehaviour: MonoBehaviour:
...@@ -797,8 +837,8 @@ RectTransform: ...@@ -797,8 +837,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 430, y: -89.99997} m_AnchoredPosition: {x: 488.5, y: -54.25}
m_SizeDelta: {x: 840, y: 220} m_SizeDelta: {x: 865, y: 181.50006}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &926557243 --- !u!114 &926557243
MonoBehaviour: MonoBehaviour:
...@@ -1024,7 +1064,7 @@ RectTransform: ...@@ -1024,7 +1064,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 197} m_AnchoredPosition: {x: 0, y: 137}
m_SizeDelta: {x: 160, y: 30} m_SizeDelta: {x: 160, y: 30}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &942587921 --- !u!114 &942587921
...@@ -1713,7 +1753,7 @@ RectTransform: ...@@ -1713,7 +1753,7 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0, y: 0} m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1} m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 10.505127, y: -5.4950867} m_AnchoredPosition: {x: 10.505127, y: -5.494934}
m_SizeDelta: {x: -211.60991, y: -53.570015} m_SizeDelta: {x: -211.60991, y: -53.570015}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1770795369 --- !u!114 &1770795369
...@@ -1793,7 +1833,7 @@ RectTransform: ...@@ -1793,7 +1833,7 @@ RectTransform:
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: -157} m_AnchoredPosition: {x: 0, y: -157}
m_SizeDelta: {x: 840, y: 190.2} m_SizeDelta: {x: 766, y: 218.2}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1788219873 --- !u!114 &1788219873
MonoBehaviour: MonoBehaviour:
...@@ -1956,8 +1996,8 @@ RectTransform: ...@@ -1956,8 +1996,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: -430, y: -90} m_AnchoredPosition: {x: -480.94995, y: -54.25}
m_SizeDelta: {x: 840, y: 220} m_SizeDelta: {x: 880.1, y: 181.50006}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1834468562 --- !u!114 &1834468562
MonoBehaviour: MonoBehaviour:
...@@ -2120,8 +2160,8 @@ RectTransform: ...@@ -2120,8 +2160,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 430, y: -329.99997} m_AnchoredPosition: {x: 488.5, y: -272}
m_SizeDelta: {x: 840, y: 220} m_SizeDelta: {x: 865, y: 176.79999}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1967714908 --- !u!114 &1967714908
MonoBehaviour: MonoBehaviour:
...@@ -2278,10 +2318,10 @@ RectTransform: ...@@ -2278,10 +2318,10 @@ RectTransform:
m_Father: {fileID: 114978524} m_Father: {fileID: 114978524}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 0.5, y: 0.5} m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0} m_AnchoredPosition: {x: -0.54992676, y: -3.4000244}
m_SizeDelta: {x: 2074.4, y: 1034} m_SizeDelta: {x: 2302.9004, y: 929.6001}
m_Pivot: {x: 0.5, y: 0.5} m_Pivot: {x: 0.5, y: 0.5}
--- !u!114 &1972722294 --- !u!114 &1972722294
MonoBehaviour: MonoBehaviour:
......
...@@ -19,7 +19,7 @@ MonoBehaviour: ...@@ -19,7 +19,7 @@ MonoBehaviour:
width: 1920 width: 1920
height: 997 height: 997
m_ShowMode: 4 m_ShowMode: 4
m_Title: Project m_Title: Inspector
m_RootView: {fileID: 7} m_RootView: {fileID: 7}
m_MinSize: {x: 875, y: 542} m_MinSize: {x: 875, y: 542}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
...@@ -39,12 +39,12 @@ MonoBehaviour: ...@@ -39,12 +39,12 @@ MonoBehaviour:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 544 x: 567
y: 0 y: 0
width: 1048 width: 1025
height: 526 height: 474
m_MinSize: {x: 202, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4002, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 17} m_ActualView: {fileID: 17}
m_Panes: m_Panes:
- {fileID: 17} - {fileID: 17}
...@@ -71,10 +71,10 @@ MonoBehaviour: ...@@ -71,10 +71,10 @@ MonoBehaviour:
y: 30 y: 30
width: 1920 width: 1920
height: 947 height: 947
m_MinSize: {x: 879, y: 492} m_MinSize: {x: 881, y: 492}
m_MaxSize: {x: 16004, y: 14042} m_MaxSize: {x: 16006, y: 14042}
vertical: 0 vertical: 0
controlID: 110 controlID: 121
--- !u!114 &4 --- !u!114 &4
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
...@@ -118,8 +118,8 @@ MonoBehaviour: ...@@ -118,8 +118,8 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 0 y: 0
width: 310 width: 201
height: 526 height: 474
m_MinSize: {x: 200, y: 200} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 15} m_ActualView: {fileID: 15}
...@@ -143,9 +143,9 @@ MonoBehaviour: ...@@ -143,9 +143,9 @@ MonoBehaviour:
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 526 y: 474
width: 1592 width: 1592
height: 421 height: 473
m_MinSize: {x: 231, y: 271} m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021} m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 13} m_ActualView: {fileID: 13}
...@@ -176,7 +176,7 @@ MonoBehaviour: ...@@ -176,7 +176,7 @@ MonoBehaviour:
y: 0 y: 0
width: 1920 width: 1920
height: 997 height: 997
m_MinSize: {x: 875, y: 542} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
m_UseTopView: 1 m_UseTopView: 1
m_TopViewHeight: 30 m_TopViewHeight: 30
...@@ -249,10 +249,10 @@ MonoBehaviour: ...@@ -249,10 +249,10 @@ MonoBehaviour:
y: 0 y: 0
width: 1592 width: 1592
height: 947 height: 947
m_MinSize: {x: 604, y: 492} m_MinSize: {x: 605, y: 492}
m_MaxSize: {x: 12004, y: 14042} m_MaxSize: {x: 12005, y: 14042}
vertical: 1 vertical: 1
controlID: 111 controlID: 41
--- !u!114 &11 --- !u!114 &11
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
...@@ -274,11 +274,11 @@ MonoBehaviour: ...@@ -274,11 +274,11 @@ MonoBehaviour:
x: 0 x: 0
y: 0 y: 0
width: 1592 width: 1592
height: 526 height: 474
m_MinSize: {x: 604, y: 221} m_MinSize: {x: 605, y: 221}
m_MaxSize: {x: 12004, y: 4021} m_MaxSize: {x: 12005, y: 4021}
vertical: 0 vertical: 0
controlID: 112 controlID: 42
--- !u!114 &12 --- !u!114 &12
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
...@@ -294,12 +294,12 @@ MonoBehaviour: ...@@ -294,12 +294,12 @@ MonoBehaviour:
m_Children: [] m_Children: []
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 310 x: 201
y: 0 y: 0
width: 234 width: 366
height: 526 height: 474
m_MinSize: {x: 202, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4002, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 16} m_ActualView: {fileID: 16}
m_Panes: m_Panes:
- {fileID: 16} - {fileID: 16}
...@@ -326,9 +326,9 @@ MonoBehaviour: ...@@ -326,9 +326,9 @@ MonoBehaviour:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 599 y: 547
width: 1591 width: 1591
height: 400 height: 452
m_ViewDataDictionary: {fileID: 0} m_ViewDataDictionary: {fileID: 0}
m_SearchFilter: m_SearchFilter:
m_NameFilter: m_NameFilter:
...@@ -343,22 +343,22 @@ MonoBehaviour: ...@@ -343,22 +343,22 @@ MonoBehaviour:
m_SkipHidden: 0 m_SkipHidden: 0
m_SearchArea: 1 m_SearchArea: 1
m_Folders: m_Folders:
- Assets/Images - Assets
m_Globs: [] m_Globs: []
m_OriginalText: m_OriginalText:
m_ViewMode: 1 m_ViewMode: 1
m_StartGridSize: 64 m_StartGridSize: 64
m_LastFolders: m_LastFolders:
- Assets/Images - Assets
m_LastFoldersGridSize: -1 m_LastFoldersGridSize: -1
m_LastProjectPath: F:\Academic\SLIIT\Research\PlayViz\21_22-j-13\Intelligence_Analyze_System_1.2 m_LastProjectPath: F:\Academic\SLIIT\Research\PlayViz\21_22-j-13\Intelligence_Analyze_System_1.2
m_LockTracker: m_LockTracker:
m_IsLocked: 0 m_IsLocked: 0
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: de430000 m_SelectedIDs: d6430000
m_LastClickedID: 17374 m_LastClickedID: 17366
m_ExpandedIDs: 00000000d2430000d4430000d6430000d843000000ca9a3b m_ExpandedIDs: 00000000d6430000d8430000da430000dc43000000ca9a3b
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -386,7 +386,7 @@ MonoBehaviour: ...@@ -386,7 +386,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
m_LastClickedID: 0 m_LastClickedID: 0
m_ExpandedIDs: 00000000d2430000d4430000d6430000d8430000 m_ExpandedIDs: 00000000d6430000d8430000da430000dc430000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -501,15 +501,15 @@ MonoBehaviour: ...@@ -501,15 +501,15 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 73 y: 73
width: 309 width: 200
height: 505 height: 453
m_ViewDataDictionary: {fileID: 0} m_ViewDataDictionary: {fileID: 0}
m_SceneHierarchy: m_SceneHierarchy:
m_TreeViewState: m_TreeViewState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs: 4a430000
m_LastClickedID: 0 m_LastClickedID: 17226
m_ExpandedIDs: 66fbffffdc420000ee420000 m_ExpandedIDs: 66fbffffe0420000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -553,10 +553,10 @@ MonoBehaviour: ...@@ -553,10 +553,10 @@ MonoBehaviour:
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 310 x: 201
y: 73 y: 73
width: 232 width: 364
height: 505 height: 453
m_ViewDataDictionary: {fileID: 0} m_ViewDataDictionary: {fileID: 0}
m_ShowContextualTools: 0 m_ShowContextualTools: 0
m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
...@@ -569,9 +569,9 @@ MonoBehaviour: ...@@ -569,9 +569,9 @@ MonoBehaviour:
m_PlayAudio: 0 m_PlayAudio: 0
m_AudioPlay: 0 m_AudioPlay: 0
m_Position: m_Position:
m_Target: {x: 457.77444, y: 240.26329, z: -63.254364} m_Target: {x: 505.59637, y: 237.44775, z: -63.62497}
speed: 2 speed: 2
m_Value: {x: 457.77444, y: 240.26329, z: -63.254364} m_Value: {x: 505.59637, y: 237.44775, z: -63.62497}
m_RenderMode: 0 m_RenderMode: 0
m_CameraMode: m_CameraMode:
drawMode: 0 drawMode: 0
...@@ -669,10 +669,10 @@ MonoBehaviour: ...@@ -669,10 +669,10 @@ MonoBehaviour:
m_Tooltip: m_Tooltip:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 544 x: 567
y: 73 y: 73
width: 1046 width: 1023
height: 505 height: 453
m_ViewDataDictionary: {fileID: 0} m_ViewDataDictionary: {fileID: 0}
m_SerializedViewNames: [] m_SerializedViewNames: []
m_SerializedViewValues: [] m_SerializedViewValues: []
...@@ -680,7 +680,7 @@ MonoBehaviour: ...@@ -680,7 +680,7 @@ MonoBehaviour:
m_ShowGizmos: 0 m_ShowGizmos: 0
m_TargetDisplay: 0 m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0} m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 1046, y: 484} m_TargetSize: {x: 1023, y: 432}
m_TextureFilterMode: 0 m_TextureFilterMode: 0
m_TextureHideFlags: 61 m_TextureHideFlags: 61
m_RenderIMGUI: 1 m_RenderIMGUI: 1
...@@ -695,10 +695,10 @@ MonoBehaviour: ...@@ -695,10 +695,10 @@ MonoBehaviour:
m_VRangeLocked: 0 m_VRangeLocked: 0
hZoomLockedByDefault: 0 hZoomLockedByDefault: 0
vZoomLockedByDefault: 0 vZoomLockedByDefault: 0
m_HBaseRangeMin: -523 m_HBaseRangeMin: -511.5
m_HBaseRangeMax: 523 m_HBaseRangeMax: 511.5
m_VBaseRangeMin: -242 m_VBaseRangeMin: -216
m_VBaseRangeMax: 242 m_VBaseRangeMax: 216
m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1 m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1 m_VAllowExceedBaseRangeMin: 1
...@@ -716,23 +716,23 @@ MonoBehaviour: ...@@ -716,23 +716,23 @@ MonoBehaviour:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 21 y: 21
width: 1046 width: 1023
height: 484 height: 432
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Translation: {x: 523, y: 242} m_Translation: {x: 511.5, y: 216}
m_MarginLeft: 0 m_MarginLeft: 0
m_MarginRight: 0 m_MarginRight: 0
m_MarginTop: 0 m_MarginTop: 0
m_MarginBottom: 0 m_MarginBottom: 0
m_LastShownAreaInsideMargins: m_LastShownAreaInsideMargins:
serializedVersion: 2 serializedVersion: 2
x: -523 x: -511.5
y: -242 y: -216
width: 1046 width: 1023
height: 484 height: 432
m_MinimalGUI: 1 m_MinimalGUI: 1
m_defaultScale: 1 m_defaultScale: 1
m_LastWindowPixelSize: {x: 1046, y: 505} m_LastWindowPixelSize: {x: 1023, y: 453}
m_ClearInEditMode: 1 m_ClearInEditMode: 1
m_NoCameraWarning: 1 m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000 m_LowResolutionForAspectRatios: 01000000000000000000
...@@ -759,9 +759,9 @@ MonoBehaviour: ...@@ -759,9 +759,9 @@ MonoBehaviour:
m_Pos: m_Pos:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
y: 584 y: 565
width: 1614 width: 1591
height: 415 height: 434
m_ViewDataDictionary: {fileID: 0} m_ViewDataDictionary: {fileID: 0}
--- !u!114 &19 --- !u!114 &19
MonoBehaviour: MonoBehaviour:
......
...@@ -3,4 +3,4 @@ hdr-display-enabled=0 ...@@ -3,4 +3,4 @@ hdr-display-enabled=0
gc-max-time-slice=3 gc-max-time-slice=3
androidStartInFullscreen=1 androidStartInFullscreen=1
androidRenderOutsideSafeArea=1 androidRenderOutsideSafeArea=1
buildDate=637769838123066494 buildDate=637770339515061482
...@@ -18,6 +18,8 @@ ScriptsOnlyBuild: ...@@ -18,6 +18,8 @@ ScriptsOnlyBuild:
- UnityEditor.Tilemaps.TilemapPrefabStageHelper - UnityEditor.Tilemaps.TilemapPrefabStageHelper
Unity.Rider.Editor.dll: Unity.Rider.Editor.dll:
- Packages.Rider.Editor.UnitTesting.CallbackData - Packages.Rider.Editor.UnitTesting.CallbackData
Unity.Timeline.Editor.dll:
- TimelineProjectSettings
UnityEditor.TestRunner.dll: UnityEditor.TestRunner.dll:
- UnityEditor.TestTools.TestRunner.Api.CallbacksHolder - UnityEditor.TestTools.TestRunner.Api.CallbacksHolder
- UnityEditor.TestTools.TestRunner.TestListCacheData - UnityEditor.TestTools.TestRunner.TestListCacheData
...@@ -611,4 +613,4 @@ ScriptsOnlyBuild: ...@@ -611,4 +613,4 @@ ScriptsOnlyBuild:
platform: 13 platform: 13
scenePathNames: scenePathNames:
- Assets/Scenes/SampleScene.unity - Assets/Scenes/SampleScene.unity
playerPath: C:/Users/Chamith/Desktop/New folder (2)/IAS_Beta_1.02.apk playerPath: C:/Users/Chamith/Desktop/New folder (2)/IAS_Beta_1.05.apk
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":457.7744445800781,"y":240.26329040527345,"z":-63.254364013671878},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":523.693115234375,"orthographic":true} {"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":true,"pivot":{"x":505.59637451171877,"y":237.44775390625,"z":-63.624969482421878},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":523.693115234375,"orthographic":true}
\ No newline at end of file \ No newline at end of file
...@@ -15,11 +15,11 @@ F:/Academic/SLIIT/Research/PlayViz/21_22-j-13/Intelligence_Analyze_System_1.2 ...@@ -15,11 +15,11 @@ F:/Academic/SLIIT/Research/PlayViz/21_22-j-13/Intelligence_Analyze_System_1.2
-logFile -logFile
Logs/AssetImportWorker0.log Logs/AssetImportWorker0.log
-srvPort -srvPort
4977 9192
Successfully changed project path to: F:/Academic/SLIIT/Research/PlayViz/21_22-j-13/Intelligence_Analyze_System_1.2 Successfully changed project path to: F:/Academic/SLIIT/Research/PlayViz/21_22-j-13/Intelligence_Analyze_System_1.2
F:/Academic/SLIIT/Research/PlayViz/21_22-j-13/Intelligence_Analyze_System_1.2 F:/Academic/SLIIT/Research/PlayViz/21_22-j-13/Intelligence_Analyze_System_1.2
Using Asset Import Pipeline V2. Using Asset Import Pipeline V2.
Refreshing native plugins compatible for Editor in 71.56 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 67.07 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Initialize engine version: 2020.3.25f1 (9b9180224418) Initialize engine version: 2020.3.25f1 (9b9180224418)
[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/Resources/UnitySubsystems [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/Resources/UnitySubsystems
...@@ -35,89 +35,89 @@ Initialize mono ...@@ -35,89 +35,89 @@ Initialize mono
Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/Managed' Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/Managed'
Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit'
Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/MonoBleedingEdge/etc' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/MonoBleedingEdge/etc'
Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56784 Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56948
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Registering precompiled unity dll's ... Registering precompiled unity dll's ...
Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll Register platform support module: C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll
Registered in 0.003028 seconds. Registered in 0.002826 seconds.
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 87.05 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 67.72 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Completed reload, in 1.443 seconds - Completed reload, in 0.903 seconds
Domain Reload Profiling: Domain Reload Profiling:
ReloadAssembly (1445ms) ReloadAssembly (903ms)
BeginReloadAssembly (115ms) BeginReloadAssembly (88ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (0ms) DisableScriptedObjects (0ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (1ms) CreateAndSetChildDomain (1ms)
EndReloadAssembly (1157ms) EndReloadAssembly (701ms)
LoadAssemblies (111ms) LoadAssemblies (85ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
SetupTypeCache (265ms) SetupTypeCache (232ms)
ReleaseScriptCaches (0ms) ReleaseScriptCaches (0ms)
RebuildScriptCaches (89ms) RebuildScriptCaches (52ms)
SetupLoadedEditorAssemblies (380ms) SetupLoadedEditorAssemblies (253ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (17ms) InitializePlatformSupportModulesInManaged (7ms)
SetLoadedEditorAssemblies (1ms) SetLoadedEditorAssemblies (0ms)
RefreshPlugins (87ms) RefreshPlugins (68ms)
BeforeProcessingInitializeOnLoad (30ms) BeforeProcessingInitializeOnLoad (12ms)
ProcessInitializeOnLoadAttributes (175ms) ProcessInitializeOnLoadAttributes (122ms)
ProcessInitializeOnLoadMethodAttributes (69ms) ProcessInitializeOnLoadMethodAttributes (43ms)
AfterProcessingInitializeOnLoad (0ms) AfterProcessingInitializeOnLoad (0ms)
EditorAssembliesLoaded (1ms) EditorAssembliesLoaded (1ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (0ms) AwakeInstancesAfterBackupRestoration (0ms)
Platform modules already initialized, skipping Platform modules already initialized, skipping
Registering precompiled user dll's ... Registering precompiled user dll's ...
Registered in 0.012265 seconds. Registered in 0.005394 seconds.
Begin MonoManager ReloadAssembly Begin MonoManager ReloadAssembly
Native extension for WindowsStandalone target not found Native extension for WindowsStandalone target not found
Refreshing native plugins compatible for Editor in 77.90 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 75.58 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Mono: successfully reloaded assembly Mono: successfully reloaded assembly
- Completed reload, in 2.305 seconds - Completed reload, in 1.911 seconds
Domain Reload Profiling: Domain Reload Profiling:
ReloadAssembly (2306ms) ReloadAssembly (1913ms)
BeginReloadAssembly (307ms) BeginReloadAssembly (235ms)
ExecutionOrderSort (0ms) ExecutionOrderSort (0ms)
DisableScriptedObjects (9ms) DisableScriptedObjects (6ms)
BackupInstance (0ms) BackupInstance (0ms)
ReleaseScriptingObjects (0ms) ReleaseScriptingObjects (0ms)
CreateAndSetChildDomain (28ms) CreateAndSetChildDomain (29ms)
EndReloadAssembly (1888ms) EndReloadAssembly (1540ms)
LoadAssemblies (162ms) LoadAssemblies (178ms)
RebuildTransferFunctionScriptingTraits (0ms) RebuildTransferFunctionScriptingTraits (0ms)
SetupTypeCache (529ms) SetupTypeCache (605ms)
ReleaseScriptCaches (1ms) ReleaseScriptCaches (1ms)
RebuildScriptCaches (115ms) RebuildScriptCaches (70ms)
SetupLoadedEditorAssemblies (781ms) SetupLoadedEditorAssemblies (517ms)
LogAssemblyErrors (0ms) LogAssemblyErrors (0ms)
InitializePlatformSupportModulesInManaged (6ms) InitializePlatformSupportModulesInManaged (5ms)
SetLoadedEditorAssemblies (0ms) SetLoadedEditorAssemblies (0ms)
RefreshPlugins (78ms) RefreshPlugins (76ms)
BeforeProcessingInitializeOnLoad (191ms) BeforeProcessingInitializeOnLoad (112ms)
ProcessInitializeOnLoadAttributes (368ms) ProcessInitializeOnLoadAttributes (286ms)
ProcessInitializeOnLoadMethodAttributes (116ms) ProcessInitializeOnLoadMethodAttributes (27ms)
AfterProcessingInitializeOnLoad (21ms) AfterProcessingInitializeOnLoad (12ms)
EditorAssembliesLoaded (0ms) EditorAssembliesLoaded (0ms)
ExecutionOrderSort2 (0ms) ExecutionOrderSort2 (0ms)
AwakeInstancesAfterBackupRestoration (21ms) AwakeInstancesAfterBackupRestoration (10ms)
Platform modules already initialized, skipping Platform modules already initialized, skipping
======================================================================== ========================================================================
Worker process is ready to serve import requests Worker process is ready to serve import requests
Launched and connected shader compiler UnityShaderCompiler.exe after 0.20 seconds Launched and connected shader compiler UnityShaderCompiler.exe after 0.12 seconds
Refreshing native plugins compatible for Editor in 0.80 ms, found 3 plugins. Refreshing native plugins compatible for Editor in 0.67 ms, found 3 plugins.
Preloading 0 native plugins for Editor in 0.00 ms. Preloading 0 native plugins for Editor in 0.00 ms.
Unloading 2198 Unused Serialized files (Serialized files now loaded: 0) Unloading 2198 Unused Serialized files (Serialized files now loaded: 0)
System memory in use before: 96.6 MB. System memory in use before: 96.6 MB.
System memory in use after: 96.7 MB. System memory in use after: 96.7 MB.
Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2631. Unloading 28 unused Assets to reduce memory usage. Loaded Objects now: 2631.
Total: 4.293100 ms (FindLiveObjects: 0.252600 ms CreateObjectMapping: 0.125300 ms MarkObjects: 3.821200 ms DeleteObjects: 0.092600 ms) Total: 4.904200 ms (FindLiveObjects: 0.550500 ms CreateObjectMapping: 0.504400 ms MarkObjects: 3.709000 ms DeleteObjects: 0.139000 ms)
AssetImportParameters requested are different than current active one (requested -> active): AssetImportParameters requested are different than current active one (requested -> active):
custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 ->
...@@ -131,17 +131,9 @@ AssetImportParameters requested are different than current active one (requested ...@@ -131,17 +131,9 @@ AssetImportParameters requested are different than current active one (requested
custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 ->
======================================================================== ========================================================================
Received Import Request. Received Import Request.
path: Assets/Images/Screenshot 2022-01-05 200140.png
artifactKey: Guid(fe8406abe338d64428718d18e13b056c) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/Images/Screenshot 2022-01-05 200140.png using Guid(fe8406abe338d64428718d18e13b056c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed246c490989bda9f26a9dc00608536b') in 0.258278 seconds
Import took 0.263201 seconds .
========================================================================
Received Import Request.
Time since last request: 32.748272 seconds.
path: Assets/QuizManager.cs path: Assets/QuizManager.cs
artifactKey: Guid(4fe8907ae886e44408ccac83e0518e3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) artifactKey: Guid(4fe8907ae886e44408ccac83e0518e3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b)
Start importing Assets/QuizManager.cs using Guid(4fe8907ae886e44408ccac83e0518e3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bada41354e986144be216f55fa84db8') in 0.031567 seconds Start importing Assets/QuizManager.cs using Guid(4fe8907ae886e44408ccac83e0518e3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74dc356534b81e3585bb584507d1e27f') in 0.080208 seconds
Import took 0.043295 seconds . Import took 0.122137 seconds .
AssetImportWorkerClient::OnTransportError - code=2 error=End of file AssetImportWorkerClient::OnTransportError - code=2 error=End of file
Base path: 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2020.3.25f1/Editor/Data/PlaybackEngines'
Cmd: initializeCompiler
Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
Quitting shader compiler process
...@@ -8,7 +8,7 @@ PlayerSettings: ...@@ -8,7 +8,7 @@ PlayerSettings:
AndroidProfiler: 0 AndroidProfiler: 0
AndroidFilterTouchesWhenObscured: 0 AndroidFilterTouchesWhenObscured: 0
AndroidEnableSustainedPerformanceMode: 0 AndroidEnableSustainedPerformanceMode: 0
defaultScreenOrientation: 4 defaultScreenOrientation: 3
targetDevice: 2 targetDevice: 2
useOnDemandResources: 0 useOnDemandResources: 0
accelerometerFrequency: 60 accelerometerFrequency: 60
......
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &1
MonoBehaviour:
m_ObjectHideFlags: 61
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: a287be6c49135cd4f9b2b8666c39d999, type: 3}
m_Name:
m_EditorClassIdentifier:
assetDefaultFramerate: 60
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment