为什么我给一个变量赋值后,它的原始值会被重置?

问题描述 投票:0回答:1

编辑:我不小心把coor变成了方法中的一个局部变量。

using System;
 using System.Collections;
 using System.Collections.Generic;
 using System.Linq;
 using UnityEngine;
 using UnityEngine.UI;

 public class Building : MonoBehaviour
 {
     [SerializeField] public int owner;
     [SerializeField] public int tpa, time, level;
     [SerializeField] public double maxHP, HP, atk, def, range, prod, cost;
     [SerializeField] private Vector2 coor;
     [SerializeField] public string type, branch;

     public static double totalprod;
     public static int actions;

     [SerializeField] bool buildStarted = false;
     [SerializeField] bool buildCompleted = false;
     int buildStartedOn;
     bool complete = false;


     public static List<Building> myBuildings = new List<Building>();

     public Vector2 Coor { get => coor;}

     public Building(double hp, int turn_per_action, double attack, double defence, double r, double pro, double c, int t, string typ, int lvl, string bra, int own, Vector2 co)//constructor
     {
         owner = own;
         HP = hp;
         tpa = turn_per_action;
         atk = attack;
         def = defence;
         range = r;
         prod = pro;
         cost = c;
         time = t;
         type = typ;
         level = lvl;
         branch = bra;
         coor = co;


     }
     private void Awake()
     {
         //Building building = new Building(HP, tpa, atk, def, range, prod, cost, time, type, level, branch, owner, coor);
         if(owner == 0)
         {
             myBuildings.Add(this);
         }


     }
     private void Update()
     {
         if(owner == 0)
         {

             if (buildCompleted)
             {

                 if (complete == false)
                 {
                     totalprod += prod;
                     if (type == "Base")
                     {
                         //tpa of base is apt
                         actions += tpa;
                     }
                     Debug.Log(coor);
                     complete = true;
                 }

             }
             else if (buildStarted == false)
             {
                 if (Currency.resource >= cost)
                 {
                     Currency.resource -= cost;
                     BuildDisplay.buildAction--;
                     Vector2 coor = NewBuilding.co;
                     Debug.Log(coor);

                     buildStarted = true;
                     buildStartedOn = Turn.turnCourt;
                 }
                 else
                 {
                     MenuManger.Messaging("no resource");
                     Destroy(gameObject);
                 }
             }
         }

         if(buildCompleted == false)
         {
             if(Turn.DeltaT(buildStartedOn) >= time)
             {
                 buildCompleted = true;
             }
         }

         if(HP <= 0)
         {
             Destroy(gameObject);
         }

     }

     public void OnBuilding()
     {
         if (buildCompleted)
         {
             if (SelectAction.isTargeting)
             {
                 if (owner != 0)
                 {
                     Attacking.TargetBuilding = this;
                     Attacking.isAttacking = true;

                 }
                 else
                 {
                     MenuManger.Messaging("invalid target");
                 }
             }
             else if (owner == 0)
             {
                 SelectAction.ActingBuilding = this;
                 MenuManger.ChangeMenu("Action", true);
             }
         }
         else
         {
             MenuManger.Messaging("incomplete building");
         }
     }
     public static List<Building> FindBuildingWithType(string tType)
     {
         var buildings = myBuildings.Where(x => x.type == tType).ToList();

         return buildings;

     }


 }

当我从检查器中查看coor时,它总是0,0。唯一正确的一次是在赋值后的Debug.Log()中。这段代码只运行了一次。我把coor设为私有。我用crtl+F发现这是我唯一一次改变coor的值.我测试了其他变量,这种情况没有发生。

c# unity3d
1个回答
2
投票

在这里。

Vector2 coor = NewBuilding.co;
Debug.Log(coor);

coor 是你在你的类的范围内声明的局部变量。if (Currency.resource >= cost) 块中 Update 方法,而且它与 private Vector2 coor; 字段(您可以检查它添加 Debug.Log(this.coor); 之后 Debug.Log(coor); 例如)。) 试着把代码改成。

coor = NewBuilding.co;
Debug.Log(coor);
© www.soinside.com 2019 - 2024. All rights reserved.