added test pane, NPC animation, hot dogs
This commit is contained in:
@@ -8950,7 +8950,7 @@ AnimationClip:
|
|||||||
m_CycleOffset: 0
|
m_CycleOffset: 0
|
||||||
m_HasAdditiveReferencePose: 0
|
m_HasAdditiveReferencePose: 0
|
||||||
m_LoopTime: 1
|
m_LoopTime: 1
|
||||||
m_LoopBlend: 1
|
m_LoopBlend: 0
|
||||||
m_LoopBlendOrientation: 0
|
m_LoopBlendOrientation: 0
|
||||||
m_LoopBlendPositionY: 0
|
m_LoopBlendPositionY: 0
|
||||||
m_LoopBlendPositionXZ: 0
|
m_LoopBlendPositionXZ: 0
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5654eee22f5ed0345b648c53168eb52f
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fbea27507eec9184ea0aa0bb6f3b97a1
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 23800000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
using Assets.Scripts.Actions;
|
||||||
|
|
||||||
|
namespace Assets.Scripts.Buildings
|
||||||
|
{
|
||||||
|
public class HotDogs : BaseCell
|
||||||
|
{
|
||||||
|
protected override void Initialize()
|
||||||
|
{
|
||||||
|
_name = "Hot dogs";
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void BuildOptionsList()
|
||||||
|
{
|
||||||
|
_optionsList.Add("Hot Dog - 20$", new Eat(6, 15, 83));
|
||||||
|
_optionsList.Add("Colas - 10$", new Eat(6, 10, 73));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 60f522567c8014c40a76002f2dc8e2e4
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -17,7 +17,7 @@ public class CameraPlayerFollow : MonoBehaviour
|
|||||||
{
|
{
|
||||||
_obstruction = null;
|
_obstruction = null;
|
||||||
_cameraOffset = transform.position - _player.position;
|
_cameraOffset = transform.position - _player.position;
|
||||||
transform.LookAt(_player);
|
// .LookAt(_player);
|
||||||
}
|
}
|
||||||
|
|
||||||
void LateUpdate()
|
void LateUpdate()
|
||||||
|
|||||||
Reference in New Issue
Block a user