示例#1
0
 public void SetLootTableAmount(LootTableScriptableObject newLootTable, bool updateCurrentLoot)
 {
     lootTableAmount = newLootTable;
     if (updateCurrentLoot)
     {
         InitLoots();
     }
 }
示例#2
0
 public float GetPercentage(LootTableScriptableObject lootTable)
 {
     return(lootTable.GetPercentage(this));
 }
示例#3
0
 public void SetLootTableAmount(LootTableScriptableObject newLootTable)
 {
     SetLootTableAmount(newLootTable, false);
 }
示例#4
0
 public void SetLootTableItem(LootTableScriptableObject newLootTable)
 {
     SetLootTableItem(newLootTable, false);
 }