mirror of
https://github.com/tribufu/ServerGridEditor
synced 2026-05-06 15:17:35 +00:00
Update for big April release, currently on PTR!
This commit is contained in:
parent
e866207ebd
commit
490a455cfd
82 changed files with 44286 additions and 6442 deletions
|
|
@ -205,6 +205,8 @@ namespace AtlasGridDataLibrary
|
|||
public float waterColorG = 0;
|
||||
public float waterColorB = 0;
|
||||
public int skyStyleIndex = 0;
|
||||
[DefaultValue(1.0f)]
|
||||
public float serverIslandPointsMultiplier = 1.0f;
|
||||
[DefaultValue("")]
|
||||
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||
public string ServerCustomDatas1 = "";
|
||||
|
|
@ -283,6 +285,7 @@ namespace AtlasGridDataLibrary
|
|||
public bool useNpcVolumesForTreasures = false;
|
||||
public bool useLevelBoundsForTreasures = true;
|
||||
public bool prioritizeVolumesForTreasures = false;
|
||||
public int islandPoints = 1;
|
||||
public string islandTreasureBottleSupplyCrateOverrides = "";
|
||||
[DefaultValue(-1)]
|
||||
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||
|
|
@ -311,6 +314,9 @@ namespace AtlasGridDataLibrary
|
|||
[DefaultValue("")]
|
||||
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
|
||||
public string IslandInstanceClientCustomDatas2 = "";
|
||||
|
||||
public float islandWidth;
|
||||
public float islandHeight;
|
||||
}
|
||||
public class DiscoveryZoneData : MoveableObjectData
|
||||
{
|
||||
|
|
|
|||
|
|
@ -68,6 +68,18 @@ namespace AtlasGridDataLibrary
|
|||
[DefaultValue("")]
|
||||
public string HttpAPIKey = "";
|
||||
|
||||
[DefaultValue("")]
|
||||
public string S3URL = "";
|
||||
|
||||
[DefaultValue("")]
|
||||
public string S3AccessKeyId = "";
|
||||
|
||||
[DefaultValue("")]
|
||||
public string S3SecretKey = "";
|
||||
|
||||
[DefaultValue("")]
|
||||
public string S3BucketName = "";
|
||||
|
||||
[DefaultValue("")]
|
||||
public string S3KeyPrefix = "";
|
||||
|
||||
|
|
@ -77,6 +89,10 @@ namespace AtlasGridDataLibrary
|
|||
MaxFileHistory = In.MaxFileHistory;
|
||||
HttpBackupURL = In.HttpBackupURL;
|
||||
HttpAPIKey = In.HttpAPIKey;
|
||||
S3URL = In.S3URL;
|
||||
S3AccessKeyId = In.S3AccessKeyId;
|
||||
S3SecretKey = In.S3SecretKey;
|
||||
S3BucketName = In.S3BucketName;
|
||||
S3KeyPrefix = In.S3KeyPrefix;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue