Skip to content
Snippets Groups Projects
Commit 09eb2144 authored by DI-PIETRO RAFFAEL's avatar DI-PIETRO RAFFAEL
Browse files

Merge branch 'master' of git.unistra.fr:chirz/cityescape into master

parents e01ec840 d42355f5
No related merge requests found
fileFormatVersion: 2
guid: b37f61ddf32ef4514918459a6df9a7f6
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CreationItem : MonoBehaviour
{
// Start is called before the first frame update
// Reference to the Prefab. Drag a Prefab into this field in the Inspector.
public GameObject myPrefab;
// This script will simply instantiate the Prefab when the game starts.
void Start()
{
// Instantiate at position (0, 0, 0) and zero rotation.
Instantiate(myPrefab, new Vector3(0, 0, 0), Quaternion.identity);
}
// Update is called once per frame
void Update()
{
}
}
fileFormatVersion: 2
guid: e6d8a296b7e734d5ea35c2a9887d5e17
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -18,3 +18,23 @@ C# parse time : 464ms
candidates check time : 51ms
console write time : 1ms
[api-updater (non-obsolete-error-filter)] 26/03/2021 22:19:52 : Starting /Applications/Unity/Hub/Editor/2020.3.1f1/Unity.app/Contents/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe
[api-updater (non-obsolete-error-filter)]
----------------------------------
jit/startup time : 297,35ms
moved types parse time: 109ms
candidates parse time : 2ms
C# parse time : 622ms
candidates check time : 78ms
console write time : 2ms
[api-updater (non-obsolete-error-filter)] 26/03/2021 22:20:15 : Starting /Applications/Unity/Hub/Editor/2020.3.1f1/Unity.app/Contents/Tools/ScriptUpdater/APIUpdater.NonObsoleteApiUpdaterDetector.exe
[api-updater (non-obsolete-error-filter)]
----------------------------------
jit/startup time : 120,606ms
moved types parse time: 131ms
candidates parse time : 5ms
C# parse time : 407ms
candidates check time : 64ms
console write time : 0ms
......@@ -11,6 +11,9 @@ EditorUserSettings:
RecentlyUsedScenePath-1:
value: 22424703114646680e0b0227036c4b1505032b2929262361633c133af6f9
flags: 0
RecentlyUsedScenePath-2:
value: 22424703114646680e0b0227036c4c1313191d1e2d2621253467083debf42d
flags: 0
vcSharedLogLevel:
value: 0d5e400f0650
flags: 0
......
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