From e50e572c78c2ac933d5ead860a46599231161231 Mon Sep 17 00:00:00 2001 From: Thomas <72444570+Applevangelist@users.noreply.github.com> Date: Sun, 6 Apr 2025 15:43:09 +0200 Subject: [PATCH 1/4] Update classes-core.md --- docs/archive/classes-core.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/archive/classes-core.md b/docs/archive/classes-core.md index 6342620b8..b9869b59e 100644 --- a/docs/archive/classes-core.md +++ b/docs/archive/classes-core.md @@ -395,4 +395,3 @@ Define zones within your mission of various forms, with various capabilities. [Wrapper.Static]: https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Wrapper.Static.html [Wrapper.Unit]: https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Wrapper.Unit.html [Core.Zone]: https://flightcontrol-master.github.io/MOOSE_DOCS_DEVELOP/Documentation/Core.Zone.html - From 0405af2bdebd6140b8e92e9403b4b043490e1cd0 Mon Sep 17 00:00:00 2001 From: Thomas <72444570+Applevangelist@users.noreply.github.com> Date: Sun, 6 Apr 2025 16:04:07 +0200 Subject: [PATCH 2/4] Update docs-header.py --- Moose Development/docs-header.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/docs-header.py b/Moose Development/docs-header.py index 72dfc6f28..0b27a91f3 100644 --- a/Moose Development/docs-header.py +++ b/Moose Development/docs-header.py @@ -15,7 +15,7 @@ with open( os.path.dirname(__file__) + '/docs-header.html', 'r') as file: # that directory files = Path(directory).glob('*.html') for file in files: - # print(file) + print(file) with open(file, 'r') as fileread: filedata = fileread.read() # Replace the target string From ffccc31e38c1ddc3abff56970d0155652b631147 Mon Sep 17 00:00:00 2001 From: Thomas <72444570+Applevangelist@users.noreply.github.com> Date: Sun, 6 Apr 2025 16:12:13 +0200 Subject: [PATCH 3/4] Update CargoGroup.lua --- Moose Development/Moose/Cargo/CargoGroup.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/Moose Development/Moose/Cargo/CargoGroup.lua b/Moose Development/Moose/Cargo/CargoGroup.lua index abcc89ea8..c2d9b26a2 100644 --- a/Moose Development/Moose/Cargo/CargoGroup.lua +++ b/Moose Development/Moose/Cargo/CargoGroup.lua @@ -772,3 +772,4 @@ do -- CARGO_GROUP end -- CARGO_GROUP + From d707a4775c5846aa0fcae288353d7ef5c61b9878 Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Sun, 6 Apr 2025 16:19:06 +0200 Subject: [PATCH 4/4] xx --- Moose Development/Moose/Core/SpawnStatic.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Moose Development/Moose/Core/SpawnStatic.lua b/Moose Development/Moose/Core/SpawnStatic.lua index d68a1426d..f603450d7 100644 --- a/Moose Development/Moose/Core/SpawnStatic.lua +++ b/Moose Development/Moose/Core/SpawnStatic.lua @@ -105,7 +105,7 @@ -- -- * @{#SPAWNSTATIC.Spawn}(Heading, NewName) spawns the static with the set parameters. Optionally, heading and name can be given. The name **must be unique**! -- * @{#SPAWNSTATIC.SpawnFromCoordinate}(Coordinate, Heading, NewName) spawn the static at the given coordinate. Optionally, heading and name can be given. The name **must be unique**! --- * @{#SPAWNSTATIC.SpawnFromPointVec2}(PointVec2, Heading, NewName) spawns the static at a POINT_VEC2 coordinate. Optionally, heading and name can be given. The name **must be unique**! +-- * @{#SPAWNSTATIC.SpawnFromPointVec2}(PointVec2, Heading, NewName) spawns the static at a COORDINATE coordinate. Optionally, heading and name can be given. The name **must be unique**! -- * @{#SPAWNSTATIC.SpawnFromZone}(Zone, Heading, NewName) spawns the static at the center of a @{Core.Zone}. Optionally, heading and name can be given. The name **must be unique**! -- -- @field #SPAWNSTATIC SPAWNSTATIC @@ -411,9 +411,9 @@ function SPAWNSTATIC:Spawn(Heading, NewName) end ---- Creates a new @{Wrapper.Static} from a POINT_VEC2. +--- Creates a new @{Wrapper.Static} from a COORDINATE. -- @param #SPAWNSTATIC self --- @param Core.Point#POINT_VEC2 PointVec2 The 2D coordinate where to spawn the static. +-- @param Core.Point#COORDINATE PointVec2 The 2D coordinate where to spawn the static. -- @param #number Heading The heading of the static, which is a number in degrees from 0 to 360. -- @param #string NewName (Optional) The name of the new static. -- @return Wrapper.Static#STATIC The static spawned.