Skip to content

Commit

Permalink
updating FGBuildableManufacturerVariablePower
Browse files Browse the repository at this point in the history
-   re: #2
  • Loading branch information
SignpostMarv committed Sep 21, 2024
1 parent 3bd7242 commit fba1f3c
Showing 1 changed file with 103 additions and 18 deletions.
121 changes: 103 additions & 18 deletions schema/1.0.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6271,9 +6271,7 @@
"mFactoryInputConnections",
"mPipeInputConnections",
"mFactoryOutputConnections",
"mPipeOutputConnections",
"mInputInventoryHandlerData",
"mOutputInventoryHandlerData"
"mPipeOutputConnections"
],
"properties": {
"IsPowered": {
Expand Down Expand Up @@ -6307,12 +6305,6 @@
"type": "string",
"const": ""
},
"mInputInventoryHandlerData": {
"$ref": "#/$defs/empty-object"
},
"mOutputInventoryHandlerData": {
"$ref": "#/$defs/mOutputInventoryHandlerData"
},
"mStoppedProducingAnimationSounds": {
"$ref": "#/$defs/boolean"
},
Expand Down Expand Up @@ -6445,10 +6437,35 @@
}
}
},
"FGBuildableManufacturerVariablePower": {
"FGBuildableManufacturerVariablePower--base": {
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturer--base",
"unevaluatedProperties": false,
"required": [
"mEstimatedMininumPowerConsumption",
"mEstimatedMaximumPowerConsumption"
],
"properties": {
"mEstimatedMininumPowerConsumption": {
"$ref": "#/$defs/decimal-string"
},
"mEstimatedMaximumPowerConsumption": {
"$ref": "#/$defs/decimal-string"
}
}
},
"FGBuildableManufacturerVariablePower--QuantumEncoder": {
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturerVariablePower--base",
"required": ["IsAnimProducing"],
"properties": {
"IsAnimProducing": {
"$ref": "#/$defs/boolean"
}
}
},
"FGBuildableManufacturerVariablePower--HadronCollider": {
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturerVariablePower--base",
"required": [
"mSequenceDuration",
"mLightningTimer",
Expand Down Expand Up @@ -10479,6 +10496,61 @@
}
}
},
{
"type": "string",
"minLength": 1,
"typed_string": {
"required": [
"ClearanceBox",
"RelativeTransform"
],
"properties": {
"ClearanceBox": {
"type": "string",
"minLength": 1,
"typed_string": {
"required": [
"Min",
"Max",
"IsValid"
],
"properties": {
"Min": {
"$ref": "#/$defs/xyz"
},
"Max": {
"$ref": "#/$defs/xyz"
},
"IsValid": {
"$ref": "#/$defs/boolean"
}
}
}
},
"RelativeTransform": {
"type": "string",
"minLength": 1,
"typed_string": {
"required": [
"Rotation",
"Translation"
],
"properties": {
"Rotation": {
"$ref": "#/$defs/quaternion"
},
"Translation": {
"$ref": "#/$defs/xyz"
}
}
}
},
"ExcludeForSnapping": {
"$ref": "#/$defs/boolean"
}
}
}
},
{
"type": "string",
"minLength": 1,
Expand Down Expand Up @@ -11677,13 +11749,26 @@
"properties": {
"Classes": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturerVariablePower",
"unevaluatedProperties": false
},
"minItems": 1,
"maxItems": 1
"items": false,
"minItems": 3,
"maxItems": 3,
"prefixItems": [
{
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturerVariablePower--QuantumEncoder",
"unevaluatedProperties": false
},
{
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturerVariablePower--base",
"unevaluatedProperties": false
},
{
"type": "object",
"$ref": "#/$defs/FGBuildableManufacturerVariablePower--HadronCollider",
"unevaluatedProperties": false
}
]
}
}
},
Expand Down

0 comments on commit fba1f3c

Please sign in to comment.