Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Camera mobs (AI eye and Blob eye) don't have shadows #336

Merged
merged 3 commits into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions code/modules/mob/camera/camera.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Camera mob, used by AI camera and blob.
/mob/camera
SET_BASE_VISUAL_PIXEL(0, 0) // These are selecting floor tiles
name = "camera mob"
density = FALSE
move_force = INFINITY
Expand All @@ -8,6 +9,7 @@
mouse_opacity = MOUSE_OPACITY_TRANSPARENT
invisibility = INVISIBILITY_ABSTRACT // No one can see us
sight = SEE_SELF
shadow_type = SHADOW_NONE
/// Toggles if the camera can move on shuttles
var/move_on_shuttle = FALSE
/// Toggles if the camera can use emotes
Expand Down
Loading