我正在开发一款游戏,该游戏具有闪光灯的电池寿命功能。基本上,当闪光灯打开时,它会减少寿命,当它关闭时,它会停止。
但要实现这一点,我需要访问一个变量来确定闪光灯是打开还是关闭。
var UTWeap_FlashLight light; // declaring a new variable from the class UTWeap_FlashLight.uc
// reduces battery life of the flash light
exec function ReducePower()
{
if(light.bCheck==true)
{
if(0<power) // loops till power 1 is = 0
{
power--; // reduce the value of power
if(power==0) // if it equals 0
{
power2 = power2 - 1; // set power2 to it's own value - 1
power=100; // reset power back to 100
}
}
}
}
但是每当我编译代码时,它都会告诉我找不到变量 bCheck,这意味着我无法检查闪光灯是否亮起。我想从这个类中调用那个变量
UTWeap_FlashLight.uc
exec function TurnOff()
{
if(!Flashlight.LightComponent.bEnabled)
{
Flashlight.LightComponent.SetEnabled(true);
bCheck = true;
}
else
{
Flashlight.LightComponent.SetEnabled(false);
}
}
这部分代码是我打开/关闭闪光灯的地方。当我打开它时,我想将 bCheck 设置为 1,以便以后可以将其用作检测闪光灯是否打开的条件。但我不能使用变量,它不会改变它的值。后来我发现你不能使用其他类的变量,这很愚蠢。任何帮助表示赞赏。