Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Assets/CWAssets/Scripts/AI.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using UnityEngine;
using UnityEngine.AI;
using System.Collections;
namespace CW{
public class AI : MonoBehaviour {
Expand Down
2 changes: 1 addition & 1 deletion Assets/CWAssets/Scripts/Species.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public GameObject createPlant() {
private GameObject CreateOrganism(Vector3 position) {
// GameObject organism = Instantiate(WorldController.speciesPrefabs["African Elephant"]) as GameObject;
GameObject organism = Instantiate(Resources.Load("Prefabs/Dummy")) as GameObject;
organism.transform.FindChild("Quad").GetComponent<Renderer>().material.mainTexture = Resources.Load(Constants.TEXTURE_RESOURCES_PATH + "Species/" + name) as Texture;
organism.transform.Find("Quad").GetComponent<Renderer>().material.mainTexture = Resources.Load(Constants.TEXTURE_RESOURCES_PATH + "Species/" + name) as Texture;
organism.transform.position = position;

if (organism_type.Equals("Animal")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private static bool DisableValidate()
private static BuildTargetGroup[] buildTargetGroups = new BuildTargetGroup[]
{
BuildTargetGroup.Standalone,
BuildTargetGroup.WebPlayer,
BuildTargetGroup.WebGL,
BuildTargetGroup.Android,
BuildTargetGroup.iOS,
BuildTargetGroup.WP8,
Expand Down
9 changes: 0 additions & 9 deletions Assets/Plugins/Editor.meta

This file was deleted.

9 changes: 0 additions & 9 deletions Assets/Plugins/Editor/JetBrains.meta

This file was deleted.

96 changes: 0 additions & 96 deletions Assets/Plugins/Editor/JetBrains/RiderAssetPostprocessor.cs

This file was deleted.

12 changes: 0 additions & 12 deletions Assets/Plugins/Editor/JetBrains/RiderAssetPostprocessor.cs.meta

This file was deleted.

Loading