├── .gitignore ├── Blocks ├── AltBox.tscn ├── AltFakeWall.tscn ├── BlueBox.tscn ├── GlassWall.tscn ├── GrassBox.tscn ├── GrassTile.tscn ├── PortalFrame.tscn ├── RedBox.tscn ├── Wall.tscn ├── Wall4m.tscn ├── WallSide.tscn ├── WallWithPortalFrame.tscn └── WallWithPortalFrameSide.tscn ├── L1.tscn ├── L1a.tscn ├── Materials ├── AltRed.tres ├── Blue.tres ├── Glass.tres ├── Grass.tres ├── Red.tres ├── help.png ├── help.png.import ├── help.svg ├── help.svg.import ├── thanks.png └── thanks.png.import ├── Models ├── Icosphere.blend ├── Icosphere.blend1 ├── Icosphere.fbx ├── Icosphere.fbx.import └── Icosphere.tscn ├── Objects ├── Checkpoint.gd ├── Checkpoint.tscn ├── Night │ ├── NightProjector.gd │ └── NightProjector.tscn ├── Player.gd ├── Player.tscn ├── PlayerDetector.gd ├── PlayerDetector.tscn ├── SunLight.gd └── SunLight.tscn ├── Portal ├── Portal.gd ├── Portal.gdshader ├── Portal.tscn ├── PortalArea.gd └── PortalMaterial.tres ├── README.md ├── default_env.tres ├── icon.png ├── icon.png.import ├── night_env.tres └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/.gitignore -------------------------------------------------------------------------------- /Blocks/AltBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/AltBox.tscn -------------------------------------------------------------------------------- /Blocks/AltFakeWall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/AltFakeWall.tscn -------------------------------------------------------------------------------- /Blocks/BlueBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/BlueBox.tscn -------------------------------------------------------------------------------- /Blocks/GlassWall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/GlassWall.tscn -------------------------------------------------------------------------------- /Blocks/GrassBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/GrassBox.tscn -------------------------------------------------------------------------------- /Blocks/GrassTile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/GrassTile.tscn -------------------------------------------------------------------------------- /Blocks/PortalFrame.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/PortalFrame.tscn -------------------------------------------------------------------------------- /Blocks/RedBox.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/RedBox.tscn -------------------------------------------------------------------------------- /Blocks/Wall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/Wall.tscn -------------------------------------------------------------------------------- /Blocks/Wall4m.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/Wall4m.tscn -------------------------------------------------------------------------------- /Blocks/WallSide.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/WallSide.tscn -------------------------------------------------------------------------------- /Blocks/WallWithPortalFrame.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/WallWithPortalFrame.tscn -------------------------------------------------------------------------------- /Blocks/WallWithPortalFrameSide.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Blocks/WallWithPortalFrameSide.tscn -------------------------------------------------------------------------------- /L1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/L1.tscn -------------------------------------------------------------------------------- /L1a.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/L1a.tscn -------------------------------------------------------------------------------- /Materials/AltRed.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/AltRed.tres -------------------------------------------------------------------------------- /Materials/Blue.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/Blue.tres -------------------------------------------------------------------------------- /Materials/Glass.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/Glass.tres -------------------------------------------------------------------------------- /Materials/Grass.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/Grass.tres -------------------------------------------------------------------------------- /Materials/Red.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/Red.tres -------------------------------------------------------------------------------- /Materials/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/help.png -------------------------------------------------------------------------------- /Materials/help.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/help.png.import -------------------------------------------------------------------------------- /Materials/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/help.svg -------------------------------------------------------------------------------- /Materials/help.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/help.svg.import -------------------------------------------------------------------------------- /Materials/thanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/thanks.png -------------------------------------------------------------------------------- /Materials/thanks.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Materials/thanks.png.import -------------------------------------------------------------------------------- /Models/Icosphere.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Models/Icosphere.blend -------------------------------------------------------------------------------- /Models/Icosphere.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Models/Icosphere.blend1 -------------------------------------------------------------------------------- /Models/Icosphere.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Models/Icosphere.fbx -------------------------------------------------------------------------------- /Models/Icosphere.fbx.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Models/Icosphere.fbx.import -------------------------------------------------------------------------------- /Models/Icosphere.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Models/Icosphere.tscn -------------------------------------------------------------------------------- /Objects/Checkpoint.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/Checkpoint.gd -------------------------------------------------------------------------------- /Objects/Checkpoint.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/Checkpoint.tscn -------------------------------------------------------------------------------- /Objects/Night/NightProjector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/Night/NightProjector.gd -------------------------------------------------------------------------------- /Objects/Night/NightProjector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/Night/NightProjector.tscn -------------------------------------------------------------------------------- /Objects/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/Player.gd -------------------------------------------------------------------------------- /Objects/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/Player.tscn -------------------------------------------------------------------------------- /Objects/PlayerDetector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/PlayerDetector.gd -------------------------------------------------------------------------------- /Objects/PlayerDetector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/PlayerDetector.tscn -------------------------------------------------------------------------------- /Objects/SunLight.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/SunLight.gd -------------------------------------------------------------------------------- /Objects/SunLight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Objects/SunLight.tscn -------------------------------------------------------------------------------- /Portal/Portal.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Portal/Portal.gd -------------------------------------------------------------------------------- /Portal/Portal.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Portal/Portal.gdshader -------------------------------------------------------------------------------- /Portal/Portal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Portal/Portal.tscn -------------------------------------------------------------------------------- /Portal/PortalArea.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Portal/PortalArea.gd -------------------------------------------------------------------------------- /Portal/PortalMaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/Portal/PortalMaterial.tres -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/README.md -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/icon.png.import -------------------------------------------------------------------------------- /night_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/night_env.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Godot/GodotPortals/HEAD/project.godot --------------------------------------------------------------------------------