-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
42 lines (30 loc) · 1.2 KB
/
Copy pathConfig.cs
File metadata and controls
42 lines (30 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ModLoader.Config;
namespace HideSometing
{
public class Config:ModConfig
{
public override ConfigScope Mode => ConfigScope.ClientSide;
[DefaultValue(true)]
public bool OthersProjectileHide { get; set; } // 弹幕隐藏开关
[DefaultValue(false)]
public bool DustHide { get; set; } // 粒子隐藏开关
[DefaultValue(false)]
public bool OthersMinionHide { get; set; } // 召唤物隐藏开关
[DefaultValue(false)]
public bool OthersPetHide { get; set; } // 宠物隐藏开关
[DefaultValue(false)]
public bool GoreHide { get; set; } // 尸块/死亡动画隐藏开关
//[DefaultValue(false)]
//public bool PlayerHide { get; set; } // 玩家隐藏开关
//[DefaultValue(false)]
//public bool PlayerSelfHide { get; set; } // 玩家自己隐藏开关
[DefaultValue(false)]
public bool TownNPCHide { get; set; } // 城镇NPC隐藏开关
}
}