Skip to content
Snippets Groups Projects
Select Git revision
  • 78decc2133bd64e641608858fa3a7412ee331809
  • master default protected
  • hsh_v4.5
  • hsh_v4-4
  • hsh_v4.4
  • hsh_v4.3
  • hsh_v4.1.x
  • hsh_v4.2
  • hsh_v4.1
  • hsh_v3.11
  • hsh_3.10
  • v3.11-r2-hsh
  • v3.11-r2
  • v3.11-r1
  • v3.10-r1
  • v3.9-r1
  • v3.8-r2
  • v3.8-r1
  • v3.7-r1
19 results

coursebackups.php

Blame
  • Interactables.java 324 B
    import greenfoot.*;
    public class Interactables extends Actor
    {
        public void disappear() {
            if (isAtEdge()) {
                getWorld().removeObject(this);
            }
        }
        public boolean canSee(Class clss)
        {
            Actor actor = getOneObjectAtOffset(0, 0, clss);
            return actor != null;        
        }
    }