Files
Paradise/mkdocs.yml
warriorstar-orion 79bad427c8 Movement cross/uncross implementation. (#26762)
* refactor: Movement cross/uncross implementation.

* wrong var name

* fix unit tests dropping PDAs into nowhere

* Add documentation.

* remove unused constants

* say which procs are off limits

* fix simpleanimal z change runtime

* helps not to leave merge conflicts

* kill me

* fix typecast

* fix projectile/table collision

* treadmills don't cause MC to crash anymore

* connect_loc is appropriate here

* fix windoors and teleporters

* fix bonfires and clarify docs

* fix proximity sensors

Tested with sensors in crates, sensors in modsuits
Tested new proximity component with firing projectiles at singularity
Tested new proximity component with portable flashes
Tested new proximity component with facehuggers

* lint

* fix: polarized access helper false positives

* Revert "fix: polarized access helper false positives"

This reverts commit 9814f98cf6.

* hopefully the right change for mindflayer steam

* Changes following cameras

* fix glass table collision

* appears to fix doorspam

* fix ore bags not picking up ore

* fix signatures of /Exited

* remove debug log

* remove duplicate signal registrar

* fix emptying bags into locations

* I don't trust these nested Move calls

* use connect_loc for upgraded resonator fields

* use moveToNullspace

* fix spiderweb crossing

* fix pass checking for windows from a tile off

* fix bluespace closet/transparency issues

* fix mechs not interacting with doors and probably other things

* fix debug

* fix telepete

* add some docs

* stop trying to shoehorn prox monitor into cards

* I should make sure things build

* kill override signal warning

* undef signal

* not many prox monitors survive going off like this

* small fixes to storage

* make moving wormholes respect signals

* use correct signals for pulse demon

* fix pulse heart too

* fix smoke signals

* may have fucked singulo projectile swerve

* fix singulo projectile arcing

* remove duplicate define

* just look at it

* hopefully last cleanups of incorrect signal usage

* fix squeaking

* may god have mercy on my soul

* Apply suggestions from code review

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* lewc review

* Apply suggestions from code review

Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* burza review

* fix bad args for grenade assemblies

* Update code/__DEFINES/is_helpers.dm

Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

---------

Signed-off-by: warriorstar-orion <orion@snowfrost.garden>
Co-authored-by: DGamerL <daan.lyklema@gmail.com>
Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
2024-12-21 08:07:44 +00:00

103 lines
3.0 KiB
YAML

site_name: Paradise Contributor Documentation
site_url: https://devdocs.paradisestation.org
site_description: Paradise Contributor Documentation
theme:
name: material
icon:
logo: material/palm-tree
palette:
accent: custom
primary: custom
favicon: ./images/favicon.png
extra:
social:
- icon: material/forum
name: Paradise Station Discussion Forum
link: https://www.paradisestation.org/forum
- icon: fontawesome/brands/wikipedia-w
name: Paradise Station Wiki
link: https://www.paradisestation.org/wiki
- icon: fontawesome/brands/github
name: Paradise Station GitHub
link: https://github.com/ParadiseSS13/Paradise
- icon: fontawesome/brands/discord
name: Paradise Station Discord
link: https://discord.gg/paradisess13
- icon: fontawesome/brands/patreon
name: Paradise Station Patreon
link: https://www.patreon.com/ParadiseStation
generator: false
plugins:
- gh-admonitions
- search
- social:
cards_layout_options:
background_color: '#861f41'
- glightbox
markdown_extensions:
- admonition
- attr_list
- smarty
- pymdownx.highlight:
use_pygments: false
- pymdownx.details
- pymdownx.superfences
- pymdownx.snippets
hooks:
- 'docs/hooks/contributing_path.py'
extra_javascript:
- 'javascripts/highlight.min.js'
- 'javascripts/highlight-dm.js'
- 'javascripts/init.js'
extra_css:
- 'css/para.css'
- 'css/atom-one-dark.css'
nav:
# TODO: Coding / Code Style Guide
# TODO: Mapping / Guide to Mapmerge
# TODO: Spriting
# TODO: SS13 for Experienced Coders (maybe)
- 'Introduction': 'index.md'
- 'Code of Conduct': 'CODE_OF_CONDUCT.md'
- 'Contributing Guidelines': 'CONTRIBUTING.md'
- 'Contributing':
- 'Getting Started': './contributing/getting_started.md'
- 'Reviewer Crash Course': './contributing/reviewer.md'
- 'Writing Quality PRs': './contributing/quality_prs.md'
- 'Coding':
- 'Coding Quickstart': './coding/quickstart.md'
- 'Guide to Testing': './coding/testing_guide.md'
- 'Guide to Debugging': './coding/debugging.md'
- 'Style Guidelines': './coding/style_guidelines.md'
- 'Coding Requirements': './coding/coding_requirements.md'
- 'Testing Requirements': './coding/testing_requirements.md'
- 'Database Changes': './coding/db_changes.md'
- 'Mapping':
- 'Mapping Quickstart': './mapping/quickstart.md'
- 'Mapping Requirements': './mapping/requirements.md'
- 'Design Guidelines': './mapping/design.md'
- 'Guide to Submaps': './mapping/submaps.md'
- 'Spawn Pools': './mapping/spawn_pools.md'
- 'References':
- 'Glossary': './references/glossary.md'
- 'Autodoc Guide': './references/autodoc.md'
- 'Bitflags': './references/bitflags.md'
- 'Advanced Bitflags': './references/adv_bitflags.md'
- 'Using Feedback Data': './references/feedback_data.md'
- 'Tick Order': './references/tick_order.md'
- 'Movement Signals': './references/movement_signals.md'
- 'Attack Chain': './references/attack_chain.md'