├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── NFT ├── asset.json ├── models │ └── CustomFrame.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── README.md ├── access_card_scifi_blue ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Blue_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── access_card_scifi_face ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Face_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── access_card_scifi_fingerprint ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Fingerprint_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── access_card_scifi_head ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Head_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── access_card_scifi_red ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Red_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── access_card_scifi_yellow ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Yellow_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── access_card_yellow ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Yellow_Access_Card.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── air_compressor ├── Dockerfile ├── asset.json ├── models │ └── Air_Compressor.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Fan.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── air_conditioning ├── Dockerfile ├── asset.json ├── models │ └── Air_Conditioning_Unit.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Fan.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── ambient_sound ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Ambient_Sound.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── Birds.mp3 │ ├── City.mp3 │ ├── Factory.mp3 │ ├── Field.mp3 │ ├── Swamp.mp3 │ └── Town.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── arrow ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Arrow.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── arrow_blue ├── Dockerfile ├── asset.json ├── models │ └── Arrow.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── arrow_green ├── Dockerfile ├── asset.json ├── models │ └── Arrow.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_fantasy_black ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Black_Fantasy_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_fantasy_pink ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Pink_Fantasy_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_fantasy_teal ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Teal_Fantasy_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_fantasy_toggle ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Toggle_Fantasy_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_fantasy_yellow ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Yellow_Fantasy_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_genesis_blue ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Blue_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_genesis_chest ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Button_Chest.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_genesis_green ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Green_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_genesis_red ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Red_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_pirates_wheel ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Ship_Wheel.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_scifi_blue ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Blue_SciFi_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_scifi_danger ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Danger_SciFi_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_scifi_green ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Green_SciFi_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── button_scifi_red ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Red_SciFi_Button.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── cables_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── BlueCable.glb │ ├── Cable_Box.glb │ ├── GreenCable.glb │ ├── OLD_Cable_Box.glb │ ├── OLD_GreenCable.glb │ └── RedCable.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── CloseChest.mp3 │ ├── OpenChest.mp3 │ ├── Sparks_FX_01.mp3 │ ├── Sparks_FX_02.mp3 │ ├── Sparks_FX_03.mp3 │ └── Sparks_FX_04.mp3 ├── src │ ├── cables.ts │ ├── game.ts │ └── item.ts └── tsconfig.json ├── ceiling_fan ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Ceiling_Fan.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Fan_Loop.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── chest_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Chest_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── chest_fantasy_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Chest_Base_01 │ │ ├── Chest_Base_01.glb │ │ ├── FanstasyPack_TX.png │ │ └── thumbnail.png │ ├── Chest_Top_01 │ │ ├── Chest_Top_01.glb │ │ ├── FanstasyPack_TX.png │ │ └── thumbnail.png │ └── chest.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── closeChest.mp3 │ └── openChest.mp3 ├── src │ ├── chest.ts │ ├── game.ts │ └── item.ts └── tsconfig.json ├── chest_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Chest_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── chest_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Chest_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── chest_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Chest_SciFi.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── click_area ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── ClickAreaDummy.glb │ └── transparent-texture.png ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── countdown_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Countdown_TimerFantasy_Base.glb │ ├── Countdown_TimerFantasy_Scaler.glb │ └── Countdown_Timer_Magical.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Countdown.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── timer.ts └── tsconfig.json ├── countdown_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── CountdownTimerBase.glb │ ├── CountdownTimerPointer.glb │ └── Countdown_Timer.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Countdown.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── timer.ts └── tsconfig.json ├── countdown_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Countdown_Pirate_Arrow.glb │ ├── Countdown_Pirate_Board.glb │ └── Countdown_Timer_Pirate.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Countdown.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── timer.ts └── tsconfig.json ├── countdown_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── CountdownTimerSciFiBase.glb │ ├── CountdownTimerSciFiPointer.glb │ └── Countdown_Timer_SciFi.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── timer.ts └── tsconfig.json ├── door_cyberpunk ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Cyberpunk_Door_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── door_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Door_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── door_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Door_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── door_hatch ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Hatch_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Squeak.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── door_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Door_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── door_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Door_SciFi_Vertical.glb │ └── Door_SciFi_collider.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── external_link_tools ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── hiper.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── flying_carB_horizontal_platform ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ ├── Flying_Car_Black.glb │ └── Horizontal_Flying_Car_Black.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── flying_car_horizontal_platform ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ ├── Flying_Car_Blue.glb │ └── Horizontal_Flying_Car_Blue.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── fryer ├── Dockerfile ├── asset.json ├── models │ └── Deep_Fat_Fryer.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Sizzle.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_beige ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── BeigeGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_black ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── BlackGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_blue ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── BlueGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_cream ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── CreamGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_darkGrey ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── DarkGreyGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_glass ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── GlassGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_green ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── GreenGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_grey ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── GreyGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_greyGreen ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── GreyGreenGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_lime ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── LimeGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_magnolia ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── MagnoliaGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_navy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── NavyGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_orange ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── OrangeGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_peach ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── PeachGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_pink ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── PinkGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_purple ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── PurpleGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_red ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── RedGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_turquoise ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── TurquoiseGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_white ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── WhiteGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── gallery_info_yellow ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── YellowGalleryInfo.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── grill ├── Dockerfile ├── asset.json ├── models │ └── Grill_Burgers.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Sizzle.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── helicopter ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Helicopter_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Helicopter_Loop.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_billboard_black ├── Dockerfile ├── asset.json ├── models │ └── Billboard_Black.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_billboard_small ├── Dockerfile ├── asset.json ├── models │ └── Small_Billboard.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_billboard_white ├── Dockerfile ├── asset.json ├── models │ └── Billboard_White.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_computer_screen ├── Dockerfile ├── asset.json ├── models │ └── Display_Monitor.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_cube_A ├── Dockerfile ├── asset.json ├── models │ └── Game_Cube_A.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_cube_B ├── Dockerfile ├── asset.json ├── models │ └── Game_Cube_C.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_cube_C ├── Dockerfile ├── asset.json ├── models │ └── Game_Cube_D.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_cube_D ├── Dockerfile ├── asset.json ├── models │ └── Game_Cube_E.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_cube_E ├── Dockerfile ├── asset.json ├── models │ └── Game_Cube_F.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_screen_standing ├── Dockerfile ├── asset.json ├── models │ └── Screen_Independent.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_tools_nsfw ├── asset.json ├── images │ └── sensitive_content.png ├── models │ └── image_preview.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── image_tools_simple ├── asset.json ├── models │ └── image_preview.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── index.js ├── invisible_cylinder ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Collider.glb │ └── Cylinder_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── invisible_ramp ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Collider.glb │ └── Ramp_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── invisible_semisphere ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Collider.glb │ └── SemiSphere_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── invisible_sphere ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Collider.glb │ └── Sphere_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── invisible_wall ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── InvisibleWall.glb │ └── transparent.png ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_fantasy_diamond ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Diamond_Key_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_fantasy_gem ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Gem_Key_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_fantasy_iron ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Iron_Key_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_genesis_bronze ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Bronze_Key_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_genesis_gold ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Gold_Key_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_genesis_silver ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Silver_Key_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_pirates_bronze ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Bronze_Key_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_pirates_gold ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Gold_Key_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── key_pirates_iron ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Key.png ├── models │ └── Iron_Key_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── KeyEquip.mp3 │ └── use.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── keyboard ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Keyboard_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Keyboard.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── lever_console_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Lever_Console.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── LeverSciFi.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── lever_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Lever_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── lever_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Lever_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── lever_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Lever_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── lever_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Lever_SciFi.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_ceiling ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── CeilingLight_Off.glb │ └── CeilingLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_ceiling_atomic ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── AtomicLight_Off.glb │ └── AtomicLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_ceiling_cross ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── CrossLight_Off.glb │ └── CrossLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_ceiling_round ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── RoundCeilingLight_Off.glb │ └── RoundCeilingLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_ceiling_striplight ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── StripLights_Off.glb │ └── StripLights_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_classic_chandelier ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Chandelier_Off.glb │ └── Chandelier_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_drop_chandelier ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── ChandelierB_Off.glb │ └── ChandelierB_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_floor_block ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── FuturisticLight_Off.glb │ └── FuturisticLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_floor_funky ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── FunkyFloorlight_Off.glb │ └── FunkyFloorlight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_floor_lamp ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── FloorLampA_Off.glb │ └── FloorLampA_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_floor_lamp_double ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── FloorLampB_Off.glb │ └── FloorLampB_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_floor_lamp_paper ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── IkeaLight_Off.glb │ └── IkeaLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_floor_lamp_round ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── FloorLampC_Off.glb │ └── FloorLampC_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_fluorescent ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── FluorescentLight_Off.glb │ └── FluorescentLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_gallery ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── GalleryLight_Off.glb │ └── GalleryLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_gallery_round ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── GalleryLightB_Off.glb │ └── GalleryLightB_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_rain ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── RainLight_Off.glb │ └── RainLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_rope ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Ropelights_Black.glb │ └── Ropelights_White.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_spotlight ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Spotlight_Off.glb │ └── Spotlight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_spotlight_strip ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── SpotlightStrip_Off.glb │ └── SpotlightStrip_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_table_lamp ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Lamp_Off.glb │ └── Lamp_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_triple_spotlight ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── TripleSpotlight_Off.glb │ └── TripleSpotlight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_wall ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── WallLight_Off.glb │ └── WallLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_wall_round ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── RoundWallLight_Off.glb │ └── RoundWallLight_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── light_wall_streetlamp ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── StreetLampWall_Off.glb │ └── StreetLampWall_On.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── message_bubble ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── bubble │ │ ├── MessageBubble.glb │ │ └── Message_Bubble.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── MessageBubble.mp3 ├── src │ ├── bubble.ts │ ├── game.ts │ └── item.ts └── tsconfig.json ├── metal_case_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Metal_Case.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── close.mp3 │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── microwave ├── Dockerfile ├── asset.json ├── models │ └── Microwave_Closed.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Microwave.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── mixtable ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Mixtable_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── EDMLoop.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── package.json ├── padlock_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── padlock │ │ ├── Padlock.glb │ │ ├── Padlock.psd │ │ ├── PadlockRullet.glb │ │ ├── Padlock_Main.glb │ │ ├── Padlock_TX.png │ │ └── Padlock_old.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── Button_Press.mp3 │ └── Resolve.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── padlock.ts └── tsconfig.json ├── padlock_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── padlock │ │ ├── Padlock_Pirate.jpg │ │ ├── Padlock_Roman_Numbers.glb │ │ ├── Padlock_base.glb │ │ └── Padlock_roulette.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ ├── Button_Press.mp3 │ └── Resolve.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── padlock.ts └── tsconfig.json ├── parrot_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Parrot.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── siren.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── plain_text ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── SomeText.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── platform_black_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Black_Pad.glb │ └── Vertical_Black_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_blue_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Blue_Pad.glb │ └── Vertical_Blue_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_fantasy_horizontal ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_Fantasy.glb │ └── Platform_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_fantasy_horizontal_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_Fantasy_Alt.glb │ └── Platform_Fantasy_Alt.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_fantasy_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_Fantasy.glb │ └── Vertical_Platform_Fantasy.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_fantasy_vertical_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_Fantasy_Alt.glb │ └── Vertical_Platform_Fantasy_Alt.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_genesis_horizontal ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_Genesis.glb │ └── Platform_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_genesis_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_Genesis.glb │ └── Vertical_Platform_Genesis.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_green_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Green_Pad.glb │ └── Vertical_Green_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_pirates_horizontal ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_Pirates.glb │ └── Platform_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_pirates_horizontal_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_Pirates_Alt.glb │ └── Platform_Pirates_Alt.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_pirates_raft ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Raft.glb │ └── Raft_Main.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_pirates_turtle ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Turtle.glb │ └── Turtle_Main.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_pirates_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_Pirates.glb │ └── Vertical_Platform_Pirates.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_pirates_vertical_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_Pirates_Alt.glb │ └── Vertical_Platform_Pirates_Alt.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_purple_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Purple_Pad.glb │ └── Vertical_Purple_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_red_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Red_Pad.glb │ └── Vertical_Red_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_scifi_horizontal ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_SciFi.glb │ └── Platform_SciFi.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_scifi_horizontal_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Horizontal_Platform_SciFi_Alt.glb │ └── Platform_SciFi_Alt.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_scifi_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_SciFi.glb │ └── Vertical_Platform_SciFi.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_scifi_vertical_alt ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Platform_SciFi_Alt.glb │ └── Vertical_Platform_SciFi_Alt.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_white_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Vertical_White_Pad.glb │ └── White_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── platform_yellow_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Vertical_Yellow_Pad.glb │ └── Yellow_Pad.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── police_car ├── Dockerfile ├── asset.json ├── models │ └── Police_Car.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── PoliceSiren.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_banner ├── Dockerfile ├── asset.json ├── models │ └── QR_Banner.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_blackboard ├── Dockerfile ├── asset.json ├── models │ └── QR_BlackBoard.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_box ├── Dockerfile ├── asset.json ├── models │ └── QR-DonationBox.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_card1 ├── Dockerfile ├── asset.json ├── models │ └── QR_TableCard_01.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_card2 ├── Dockerfile ├── asset.json ├── models │ └── QR_TableCard_02.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_note ├── Dockerfile ├── asset.json ├── models │ └── QR_Note.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_plane ├── Dockerfile ├── asset.json ├── models │ └── QR_Plane.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_poster ├── Dockerfile ├── asset.json ├── models │ └── QR_Poster.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_genesis_simple_frame ├── Dockerfile ├── asset.json ├── models │ └── QR_SimpleFrame.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_pirates_note ├── Dockerfile ├── asset.json ├── models │ └── QR_Note.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_scifi_frame ├── Dockerfile ├── asset.json ├── models │ └── QR_SciFi_Frame.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── qr_scifi_simple_frame ├── Dockerfile ├── asset.json ├── models │ └── QR_SciFi_Frame.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── radio ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── radio.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── utils.ts └── tsconfig.json ├── radio_cyberpunk ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Radio_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── utils.ts └── tsconfig.json ├── record_player ├── Dockerfile ├── asset.json ├── models │ └── Record_Player.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── EDMLoop.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── rising_pillar_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Rising_Pillar_Temple.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── RisingPillar.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── pillar.ts └── tsconfig.json ├── rising_pillar_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── RisingPillarGenesisBase.glb │ └── Rising_Pillar_Column.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── RisingPillar.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── pillar.ts └── tsconfig.json ├── rising_pillar_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Rising_Pillar.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── RisingPillar.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── pillar.ts └── tsconfig.json ├── rising_pillar_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Rising_Pillar_SciFi.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── RisingPillar.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── pillar.ts └── tsconfig.json ├── scoreboard_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── board │ │ └── Scoreboard.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── NumpadPress.mp3 ├── src │ ├── game.ts │ ├── item.ts │ └── scoreboard.ts └── tsconfig.json ├── scroll_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── scroll.png ├── models │ └── Magical_Scroll.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── scroll_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── scroll.png ├── models │ └── Scroll.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── scroll_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── Tablet.png ├── models │ └── Tablet.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── open.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── sign_open_closed ├── Dockerfile ├── asset.json ├── models │ ├── Closed_Sign.glb │ └── Open_Sign.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── NeonTube.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── sign_scifi_arrow ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── Sign_Arrow.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── sign_scifi_circle ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── Sign_Circle.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── sign_scifi_square ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── Sign_Square.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── sign_scifi_square_vertical ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── Sign_Square_Vertical.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_fantasy_double ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Tree_Double.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_fantasy_gold ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Golden.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_fantasy_root ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── Signpost_Root.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_fantasy_tree ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_tree.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_fantasy_tree2 ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_tree2.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_fantasy_triple ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Tree_Triple.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_genesis_double ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Directions.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_genesis_round ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Circle.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_genesis_square ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ ├── SignPost_Circle.glb │ │ └── SignPost_Square.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_genesis_street ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Street_Names.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_pirates_double ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Wood_Double.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_pirates_triple ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Wood_Triple.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_pirates_wood ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_wood.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_scifi_circle ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Neon_Circle.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_scifi_double ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Neon_Double.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── signpost_scifi_square ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── signpost │ │ └── SignPost_Neon_Square.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── siren_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Bell.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── bell.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── siren_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Siren.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── siren.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── siren_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── Futuristic_Siren.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── siren.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── slushie_machine ├── Dockerfile ├── asset.json ├── models │ └── Slushie_Machine.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Blender.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_discord ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── discord.glb │ └── discord_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_fb ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── facebook.glb │ └── facebook_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_github ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── github.glb │ └── github_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_instagram ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── instagram.glb │ └── instagram_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_reddit ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── reddit.glb │ └── reddit_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_telegram ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── telegram.glb │ └── telegram_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_twitter ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── twitter.glb │ └── twitter_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_wechat ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── wechat.glb │ └── wechat_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_button_youtube ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── youtube.glb │ └── youtube_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── click.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_discord ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── discord.glb │ └── discord_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_fb ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── facebook.glb │ └── facebook_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_github ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── github.glb │ └── github_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_instagram ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── instagram.glb │ └── instagram_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_reddit ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── reddit.glb │ └── reddit_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_telegram ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── telegram.glb │ └── telegram_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_twitter ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── twitter.glb │ └── twitter_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_wechat ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── wechat.glb │ └── wechat_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── social_media_youtube ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── youtube.glb │ └── youtube_bnw.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── spaceshipB_horizontal_platform ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ ├── Horizontal_Spaceship_Blue.glb │ └── Spaceship_Blue.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── spaceship_horizontal_platform ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ ├── Horizontal_Spaceship_Orange.glb │ └── Spaceship_Orange.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── spark ├── Dockerfile ├── asset.json ├── models │ ├── Spark.glb │ └── Spark_preview.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── speakers ├── Dockerfile ├── asset.json ├── models │ └── Cyberpunk_Speakers.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── EDMLoop.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── taxiB_horizontal_platform ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ ├── Flying_Taxi_Available.glb │ └── Horizontal_Flying_Taxi_Available.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── taxi_horizontal_platform ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ ├── Flying_Taxi_Occupied.glb │ └── Horizontal_Flying_Taxi_Occupied.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ ├── item.ts │ └── platform.ts └── tsconfig.json ├── telephone_booth ├── Dockerfile ├── asset.json ├── models │ └── Phone_Booth.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── Telephone_01.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── teleport_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── teleport.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── tools ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── tools.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── animation.ts │ ├── delay.ts │ ├── game.ts │ ├── item.ts │ └── tween.ts └── tsconfig.json ├── trapdoor_fantasy ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Stone_Trap_Door.glb │ └── TrapDoor_collider.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── TrapDoor.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── trapdoor_genesis ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── TrapDoor_collider.glb │ └── Trap_Door.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── TrapDoor.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── trapdoor_pirates ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── TrapDoor_collider.glb │ └── Wooden_Trap_Door.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── TrapDoor.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── trapdoor_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── Grey_Trap_Door.glb │ └── TrapDoor_collider.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds │ └── TrapDoor.mp3 ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── trigger_area ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ └── TriggerArea.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── area.ts │ ├── game.ts │ ├── item.ts │ └── utils.ts └── tsconfig.json ├── trigger_tile_round ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── round_trigger.glb │ └── round_trigger_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── area.ts │ ├── game.ts │ ├── item.ts │ └── utils.ts └── tsconfig.json ├── trigger_tile_scifi ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── sci_fi_trigger.glb │ └── sci_fi_trigger_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── area.ts │ ├── game.ts │ ├── item.ts │ └── utils.ts └── tsconfig.json ├── trigger_tile_square ├── .dclignore ├── Dockerfile ├── asset.json ├── models │ ├── square_trigger.glb │ └── square_trigger_EditMode.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── area.ts │ ├── game.ts │ ├── item.ts │ └── utils.ts └── tsconfig.json ├── tsconfig.item-base.json ├── upgrade-deps.sh ├── video_billboard_black ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ └── Billboard_Black.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── video_billboard_small ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ └── Small_Billboard.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── video_billboard_white ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ └── Billboard_White.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── video_computer_screen ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ └── Display_Monitor.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── video_screen_standing ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ └── Screen_Independent.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json ├── video_stream ├── .dclignore ├── Dockerfile ├── asset.json ├── images │ └── stream.png ├── models │ └── stream_preview.glb ├── package-lock.json ├── package.json ├── scene.json ├── src │ ├── game.ts │ └── item.ts └── tsconfig.json └── wall_fan ├── .dclignore ├── Dockerfile ├── asset.json ├── models └── Wall_Fan_Anim.glb ├── package-lock.json ├── package.json ├── scene.json ├── sounds └── Fan_Loop.mp3 ├── src ├── game.ts └── item.ts └── tsconfig.json /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/.gitignore -------------------------------------------------------------------------------- /NFT/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/asset.json -------------------------------------------------------------------------------- /NFT/models/CustomFrame.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/models/CustomFrame.glb -------------------------------------------------------------------------------- /NFT/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/package-lock.json -------------------------------------------------------------------------------- /NFT/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/package.json -------------------------------------------------------------------------------- /NFT/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/scene.json -------------------------------------------------------------------------------- /NFT/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/src/game.ts -------------------------------------------------------------------------------- /NFT/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/src/item.ts -------------------------------------------------------------------------------- /NFT/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/NFT/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/README.md -------------------------------------------------------------------------------- /access_card_yellow/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/access_card_yellow/.dclignore -------------------------------------------------------------------------------- /access_card_yellow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/access_card_yellow/Dockerfile -------------------------------------------------------------------------------- /access_card_yellow/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/access_card_yellow/asset.json -------------------------------------------------------------------------------- /access_card_yellow/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/access_card_yellow/scene.json -------------------------------------------------------------------------------- /air_compressor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/Dockerfile -------------------------------------------------------------------------------- /air_compressor/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/asset.json -------------------------------------------------------------------------------- /air_compressor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/package.json -------------------------------------------------------------------------------- /air_compressor/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/scene.json -------------------------------------------------------------------------------- /air_compressor/sounds/Fan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/sounds/Fan.mp3 -------------------------------------------------------------------------------- /air_compressor/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/src/game.ts -------------------------------------------------------------------------------- /air_compressor/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/src/item.ts -------------------------------------------------------------------------------- /air_compressor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_compressor/tsconfig.json -------------------------------------------------------------------------------- /air_conditioning/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_conditioning/Dockerfile -------------------------------------------------------------------------------- /air_conditioning/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_conditioning/asset.json -------------------------------------------------------------------------------- /air_conditioning/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_conditioning/package.json -------------------------------------------------------------------------------- /air_conditioning/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_conditioning/scene.json -------------------------------------------------------------------------------- /air_conditioning/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_conditioning/src/game.ts -------------------------------------------------------------------------------- /air_conditioning/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/air_conditioning/src/item.ts -------------------------------------------------------------------------------- /ambient_sound/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/.dclignore -------------------------------------------------------------------------------- /ambient_sound/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/Dockerfile -------------------------------------------------------------------------------- /ambient_sound/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/asset.json -------------------------------------------------------------------------------- /ambient_sound/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/package.json -------------------------------------------------------------------------------- /ambient_sound/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/scene.json -------------------------------------------------------------------------------- /ambient_sound/sounds/City.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/sounds/City.mp3 -------------------------------------------------------------------------------- /ambient_sound/sounds/Town.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/sounds/Town.mp3 -------------------------------------------------------------------------------- /ambient_sound/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/src/game.ts -------------------------------------------------------------------------------- /ambient_sound/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/src/item.ts -------------------------------------------------------------------------------- /ambient_sound/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ambient_sound/tsconfig.json -------------------------------------------------------------------------------- /arrow/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/.dclignore -------------------------------------------------------------------------------- /arrow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/Dockerfile -------------------------------------------------------------------------------- /arrow/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/asset.json -------------------------------------------------------------------------------- /arrow/models/Arrow.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/models/Arrow.glb -------------------------------------------------------------------------------- /arrow/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/package-lock.json -------------------------------------------------------------------------------- /arrow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/package.json -------------------------------------------------------------------------------- /arrow/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/scene.json -------------------------------------------------------------------------------- /arrow/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/src/game.ts -------------------------------------------------------------------------------- /arrow/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/src/item.ts -------------------------------------------------------------------------------- /arrow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow/tsconfig.json -------------------------------------------------------------------------------- /arrow_blue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/Dockerfile -------------------------------------------------------------------------------- /arrow_blue/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/asset.json -------------------------------------------------------------------------------- /arrow_blue/models/Arrow.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/models/Arrow.glb -------------------------------------------------------------------------------- /arrow_blue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/package-lock.json -------------------------------------------------------------------------------- /arrow_blue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/package.json -------------------------------------------------------------------------------- /arrow_blue/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/scene.json -------------------------------------------------------------------------------- /arrow_blue/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/src/game.ts -------------------------------------------------------------------------------- /arrow_blue/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/src/item.ts -------------------------------------------------------------------------------- /arrow_blue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_blue/tsconfig.json -------------------------------------------------------------------------------- /arrow_green/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/Dockerfile -------------------------------------------------------------------------------- /arrow_green/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/asset.json -------------------------------------------------------------------------------- /arrow_green/models/Arrow.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/models/Arrow.glb -------------------------------------------------------------------------------- /arrow_green/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/package-lock.json -------------------------------------------------------------------------------- /arrow_green/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/package.json -------------------------------------------------------------------------------- /arrow_green/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/scene.json -------------------------------------------------------------------------------- /arrow_green/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/src/game.ts -------------------------------------------------------------------------------- /arrow_green/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/src/item.ts -------------------------------------------------------------------------------- /arrow_green/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/arrow_green/tsconfig.json -------------------------------------------------------------------------------- /button_genesis_red/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_genesis_red/.dclignore -------------------------------------------------------------------------------- /button_genesis_red/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_genesis_red/Dockerfile -------------------------------------------------------------------------------- /button_genesis_red/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_genesis_red/asset.json -------------------------------------------------------------------------------- /button_genesis_red/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_genesis_red/scene.json -------------------------------------------------------------------------------- /button_scifi_blue/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_blue/.dclignore -------------------------------------------------------------------------------- /button_scifi_blue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_blue/Dockerfile -------------------------------------------------------------------------------- /button_scifi_blue/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_blue/asset.json -------------------------------------------------------------------------------- /button_scifi_blue/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_blue/scene.json -------------------------------------------------------------------------------- /button_scifi_blue/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_blue/src/game.ts -------------------------------------------------------------------------------- /button_scifi_blue/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_blue/src/item.ts -------------------------------------------------------------------------------- /button_scifi_green/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_green/.dclignore -------------------------------------------------------------------------------- /button_scifi_green/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_green/Dockerfile -------------------------------------------------------------------------------- /button_scifi_green/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_green/asset.json -------------------------------------------------------------------------------- /button_scifi_green/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_green/scene.json -------------------------------------------------------------------------------- /button_scifi_red/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/.dclignore -------------------------------------------------------------------------------- /button_scifi_red/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/Dockerfile -------------------------------------------------------------------------------- /button_scifi_red/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/asset.json -------------------------------------------------------------------------------- /button_scifi_red/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/package.json -------------------------------------------------------------------------------- /button_scifi_red/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/scene.json -------------------------------------------------------------------------------- /button_scifi_red/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/src/game.ts -------------------------------------------------------------------------------- /button_scifi_red/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/button_scifi_red/src/item.ts -------------------------------------------------------------------------------- /cables_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/.dclignore -------------------------------------------------------------------------------- /cables_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/Dockerfile -------------------------------------------------------------------------------- /cables_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/asset.json -------------------------------------------------------------------------------- /cables_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/package.json -------------------------------------------------------------------------------- /cables_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/scene.json -------------------------------------------------------------------------------- /cables_genesis/src/cables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/src/cables.ts -------------------------------------------------------------------------------- /cables_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/src/game.ts -------------------------------------------------------------------------------- /cables_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/src/item.ts -------------------------------------------------------------------------------- /cables_genesis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/cables_genesis/tsconfig.json -------------------------------------------------------------------------------- /ceiling_fan/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/.dclignore -------------------------------------------------------------------------------- /ceiling_fan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/Dockerfile -------------------------------------------------------------------------------- /ceiling_fan/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/asset.json -------------------------------------------------------------------------------- /ceiling_fan/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/package-lock.json -------------------------------------------------------------------------------- /ceiling_fan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/package.json -------------------------------------------------------------------------------- /ceiling_fan/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/scene.json -------------------------------------------------------------------------------- /ceiling_fan/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/src/game.ts -------------------------------------------------------------------------------- /ceiling_fan/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/src/item.ts -------------------------------------------------------------------------------- /ceiling_fan/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/ceiling_fan/tsconfig.json -------------------------------------------------------------------------------- /chest_fantasy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/.dclignore -------------------------------------------------------------------------------- /chest_fantasy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/Dockerfile -------------------------------------------------------------------------------- /chest_fantasy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/asset.json -------------------------------------------------------------------------------- /chest_fantasy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/package.json -------------------------------------------------------------------------------- /chest_fantasy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/scene.json -------------------------------------------------------------------------------- /chest_fantasy/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/sounds/open.mp3 -------------------------------------------------------------------------------- /chest_fantasy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/src/game.ts -------------------------------------------------------------------------------- /chest_fantasy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/src/item.ts -------------------------------------------------------------------------------- /chest_fantasy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy/tsconfig.json -------------------------------------------------------------------------------- /chest_fantasy_alt/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy_alt/.dclignore -------------------------------------------------------------------------------- /chest_fantasy_alt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy_alt/Dockerfile -------------------------------------------------------------------------------- /chest_fantasy_alt/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy_alt/asset.json -------------------------------------------------------------------------------- /chest_fantasy_alt/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy_alt/scene.json -------------------------------------------------------------------------------- /chest_fantasy_alt/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy_alt/src/game.ts -------------------------------------------------------------------------------- /chest_fantasy_alt/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_fantasy_alt/src/item.ts -------------------------------------------------------------------------------- /chest_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/.dclignore -------------------------------------------------------------------------------- /chest_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/Dockerfile -------------------------------------------------------------------------------- /chest_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/asset.json -------------------------------------------------------------------------------- /chest_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/package.json -------------------------------------------------------------------------------- /chest_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/scene.json -------------------------------------------------------------------------------- /chest_genesis/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/sounds/open.mp3 -------------------------------------------------------------------------------- /chest_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/src/game.ts -------------------------------------------------------------------------------- /chest_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/src/item.ts -------------------------------------------------------------------------------- /chest_genesis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_genesis/tsconfig.json -------------------------------------------------------------------------------- /chest_pirates/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/.dclignore -------------------------------------------------------------------------------- /chest_pirates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/Dockerfile -------------------------------------------------------------------------------- /chest_pirates/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/asset.json -------------------------------------------------------------------------------- /chest_pirates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/package.json -------------------------------------------------------------------------------- /chest_pirates/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/scene.json -------------------------------------------------------------------------------- /chest_pirates/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/sounds/open.mp3 -------------------------------------------------------------------------------- /chest_pirates/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/src/game.ts -------------------------------------------------------------------------------- /chest_pirates/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/src/item.ts -------------------------------------------------------------------------------- /chest_pirates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_pirates/tsconfig.json -------------------------------------------------------------------------------- /chest_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/.dclignore -------------------------------------------------------------------------------- /chest_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/Dockerfile -------------------------------------------------------------------------------- /chest_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/asset.json -------------------------------------------------------------------------------- /chest_scifi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/package-lock.json -------------------------------------------------------------------------------- /chest_scifi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/package.json -------------------------------------------------------------------------------- /chest_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/scene.json -------------------------------------------------------------------------------- /chest_scifi/sounds/close.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/sounds/close.mp3 -------------------------------------------------------------------------------- /chest_scifi/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/sounds/open.mp3 -------------------------------------------------------------------------------- /chest_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/src/game.ts -------------------------------------------------------------------------------- /chest_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/src/item.ts -------------------------------------------------------------------------------- /chest_scifi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/chest_scifi/tsconfig.json -------------------------------------------------------------------------------- /click_area/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/.dclignore -------------------------------------------------------------------------------- /click_area/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/Dockerfile -------------------------------------------------------------------------------- /click_area/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/asset.json -------------------------------------------------------------------------------- /click_area/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/package-lock.json -------------------------------------------------------------------------------- /click_area/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/package.json -------------------------------------------------------------------------------- /click_area/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/scene.json -------------------------------------------------------------------------------- /click_area/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/src/game.ts -------------------------------------------------------------------------------- /click_area/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/src/item.ts -------------------------------------------------------------------------------- /click_area/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/click_area/tsconfig.json -------------------------------------------------------------------------------- /countdown_fantasy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_fantasy/.dclignore -------------------------------------------------------------------------------- /countdown_fantasy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_fantasy/Dockerfile -------------------------------------------------------------------------------- /countdown_fantasy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_fantasy/asset.json -------------------------------------------------------------------------------- /countdown_fantasy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_fantasy/scene.json -------------------------------------------------------------------------------- /countdown_fantasy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_fantasy/src/game.ts -------------------------------------------------------------------------------- /countdown_fantasy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_fantasy/src/item.ts -------------------------------------------------------------------------------- /countdown_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_genesis/.dclignore -------------------------------------------------------------------------------- /countdown_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_genesis/Dockerfile -------------------------------------------------------------------------------- /countdown_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_genesis/asset.json -------------------------------------------------------------------------------- /countdown_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_genesis/scene.json -------------------------------------------------------------------------------- /countdown_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_genesis/src/game.ts -------------------------------------------------------------------------------- /countdown_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_genesis/src/item.ts -------------------------------------------------------------------------------- /countdown_pirates/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_pirates/.dclignore -------------------------------------------------------------------------------- /countdown_pirates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_pirates/Dockerfile -------------------------------------------------------------------------------- /countdown_pirates/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_pirates/asset.json -------------------------------------------------------------------------------- /countdown_pirates/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_pirates/scene.json -------------------------------------------------------------------------------- /countdown_pirates/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_pirates/src/game.ts -------------------------------------------------------------------------------- /countdown_pirates/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_pirates/src/item.ts -------------------------------------------------------------------------------- /countdown_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/.dclignore -------------------------------------------------------------------------------- /countdown_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/Dockerfile -------------------------------------------------------------------------------- /countdown_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/asset.json -------------------------------------------------------------------------------- /countdown_scifi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/package.json -------------------------------------------------------------------------------- /countdown_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/scene.json -------------------------------------------------------------------------------- /countdown_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/src/game.ts -------------------------------------------------------------------------------- /countdown_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/src/item.ts -------------------------------------------------------------------------------- /countdown_scifi/src/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/src/timer.ts -------------------------------------------------------------------------------- /countdown_scifi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/countdown_scifi/tsconfig.json -------------------------------------------------------------------------------- /door_cyberpunk/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/.dclignore -------------------------------------------------------------------------------- /door_cyberpunk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/Dockerfile -------------------------------------------------------------------------------- /door_cyberpunk/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/asset.json -------------------------------------------------------------------------------- /door_cyberpunk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/package.json -------------------------------------------------------------------------------- /door_cyberpunk/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/scene.json -------------------------------------------------------------------------------- /door_cyberpunk/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/src/game.ts -------------------------------------------------------------------------------- /door_cyberpunk/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/src/item.ts -------------------------------------------------------------------------------- /door_cyberpunk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_cyberpunk/tsconfig.json -------------------------------------------------------------------------------- /door_fantasy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/.dclignore -------------------------------------------------------------------------------- /door_fantasy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/Dockerfile -------------------------------------------------------------------------------- /door_fantasy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/asset.json -------------------------------------------------------------------------------- /door_fantasy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/package.json -------------------------------------------------------------------------------- /door_fantasy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/scene.json -------------------------------------------------------------------------------- /door_fantasy/sounds/close.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/sounds/close.mp3 -------------------------------------------------------------------------------- /door_fantasy/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/sounds/open.mp3 -------------------------------------------------------------------------------- /door_fantasy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/src/game.ts -------------------------------------------------------------------------------- /door_fantasy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/src/item.ts -------------------------------------------------------------------------------- /door_fantasy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_fantasy/tsconfig.json -------------------------------------------------------------------------------- /door_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/.dclignore -------------------------------------------------------------------------------- /door_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/Dockerfile -------------------------------------------------------------------------------- /door_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/asset.json -------------------------------------------------------------------------------- /door_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/package.json -------------------------------------------------------------------------------- /door_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/scene.json -------------------------------------------------------------------------------- /door_genesis/sounds/close.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/sounds/close.mp3 -------------------------------------------------------------------------------- /door_genesis/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/sounds/open.mp3 -------------------------------------------------------------------------------- /door_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/src/game.ts -------------------------------------------------------------------------------- /door_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/src/item.ts -------------------------------------------------------------------------------- /door_genesis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_genesis/tsconfig.json -------------------------------------------------------------------------------- /door_hatch/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/.dclignore -------------------------------------------------------------------------------- /door_hatch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/Dockerfile -------------------------------------------------------------------------------- /door_hatch/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/asset.json -------------------------------------------------------------------------------- /door_hatch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/package-lock.json -------------------------------------------------------------------------------- /door_hatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/package.json -------------------------------------------------------------------------------- /door_hatch/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/scene.json -------------------------------------------------------------------------------- /door_hatch/sounds/Squeak.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/sounds/Squeak.mp3 -------------------------------------------------------------------------------- /door_hatch/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/src/game.ts -------------------------------------------------------------------------------- /door_hatch/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/src/item.ts -------------------------------------------------------------------------------- /door_hatch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_hatch/tsconfig.json -------------------------------------------------------------------------------- /door_pirates/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/.dclignore -------------------------------------------------------------------------------- /door_pirates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/Dockerfile -------------------------------------------------------------------------------- /door_pirates/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/asset.json -------------------------------------------------------------------------------- /door_pirates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/package.json -------------------------------------------------------------------------------- /door_pirates/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/scene.json -------------------------------------------------------------------------------- /door_pirates/sounds/close.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/sounds/close.mp3 -------------------------------------------------------------------------------- /door_pirates/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/sounds/open.mp3 -------------------------------------------------------------------------------- /door_pirates/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/src/game.ts -------------------------------------------------------------------------------- /door_pirates/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/src/item.ts -------------------------------------------------------------------------------- /door_pirates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_pirates/tsconfig.json -------------------------------------------------------------------------------- /door_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/.dclignore -------------------------------------------------------------------------------- /door_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/Dockerfile -------------------------------------------------------------------------------- /door_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/asset.json -------------------------------------------------------------------------------- /door_scifi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/package-lock.json -------------------------------------------------------------------------------- /door_scifi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/package.json -------------------------------------------------------------------------------- /door_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/scene.json -------------------------------------------------------------------------------- /door_scifi/sounds/close.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/sounds/close.mp3 -------------------------------------------------------------------------------- /door_scifi/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/sounds/open.mp3 -------------------------------------------------------------------------------- /door_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/src/game.ts -------------------------------------------------------------------------------- /door_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/src/item.ts -------------------------------------------------------------------------------- /door_scifi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/door_scifi/tsconfig.json -------------------------------------------------------------------------------- /fryer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/Dockerfile -------------------------------------------------------------------------------- /fryer/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/asset.json -------------------------------------------------------------------------------- /fryer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/package-lock.json -------------------------------------------------------------------------------- /fryer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/package.json -------------------------------------------------------------------------------- /fryer/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/scene.json -------------------------------------------------------------------------------- /fryer/sounds/Sizzle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/sounds/Sizzle.mp3 -------------------------------------------------------------------------------- /fryer/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/src/game.ts -------------------------------------------------------------------------------- /fryer/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/src/item.ts -------------------------------------------------------------------------------- /fryer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/fryer/tsconfig.json -------------------------------------------------------------------------------- /gallery_info_beige/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_beige/.dclignore -------------------------------------------------------------------------------- /gallery_info_beige/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_beige/Dockerfile -------------------------------------------------------------------------------- /gallery_info_beige/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_beige/asset.json -------------------------------------------------------------------------------- /gallery_info_beige/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_beige/scene.json -------------------------------------------------------------------------------- /gallery_info_black/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_black/.dclignore -------------------------------------------------------------------------------- /gallery_info_black/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_black/Dockerfile -------------------------------------------------------------------------------- /gallery_info_black/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_black/asset.json -------------------------------------------------------------------------------- /gallery_info_black/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_black/scene.json -------------------------------------------------------------------------------- /gallery_info_blue/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_blue/.dclignore -------------------------------------------------------------------------------- /gallery_info_blue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_blue/Dockerfile -------------------------------------------------------------------------------- /gallery_info_blue/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_blue/asset.json -------------------------------------------------------------------------------- /gallery_info_blue/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_blue/scene.json -------------------------------------------------------------------------------- /gallery_info_blue/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_blue/src/game.ts -------------------------------------------------------------------------------- /gallery_info_blue/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_blue/src/item.ts -------------------------------------------------------------------------------- /gallery_info_cream/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_cream/.dclignore -------------------------------------------------------------------------------- /gallery_info_cream/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_cream/Dockerfile -------------------------------------------------------------------------------- /gallery_info_cream/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_cream/asset.json -------------------------------------------------------------------------------- /gallery_info_cream/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_cream/scene.json -------------------------------------------------------------------------------- /gallery_info_glass/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_glass/.dclignore -------------------------------------------------------------------------------- /gallery_info_glass/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_glass/Dockerfile -------------------------------------------------------------------------------- /gallery_info_glass/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_glass/asset.json -------------------------------------------------------------------------------- /gallery_info_glass/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_glass/scene.json -------------------------------------------------------------------------------- /gallery_info_green/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_green/.dclignore -------------------------------------------------------------------------------- /gallery_info_green/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_green/Dockerfile -------------------------------------------------------------------------------- /gallery_info_green/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_green/asset.json -------------------------------------------------------------------------------- /gallery_info_green/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_green/scene.json -------------------------------------------------------------------------------- /gallery_info_grey/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_grey/.dclignore -------------------------------------------------------------------------------- /gallery_info_grey/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_grey/Dockerfile -------------------------------------------------------------------------------- /gallery_info_grey/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_grey/asset.json -------------------------------------------------------------------------------- /gallery_info_grey/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_grey/scene.json -------------------------------------------------------------------------------- /gallery_info_grey/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_grey/src/game.ts -------------------------------------------------------------------------------- /gallery_info_grey/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_grey/src/item.ts -------------------------------------------------------------------------------- /gallery_info_lime/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_lime/.dclignore -------------------------------------------------------------------------------- /gallery_info_lime/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_lime/Dockerfile -------------------------------------------------------------------------------- /gallery_info_lime/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_lime/asset.json -------------------------------------------------------------------------------- /gallery_info_lime/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_lime/scene.json -------------------------------------------------------------------------------- /gallery_info_lime/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_lime/src/game.ts -------------------------------------------------------------------------------- /gallery_info_lime/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_lime/src/item.ts -------------------------------------------------------------------------------- /gallery_info_navy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_navy/.dclignore -------------------------------------------------------------------------------- /gallery_info_navy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_navy/Dockerfile -------------------------------------------------------------------------------- /gallery_info_navy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_navy/asset.json -------------------------------------------------------------------------------- /gallery_info_navy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_navy/scene.json -------------------------------------------------------------------------------- /gallery_info_navy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_navy/src/game.ts -------------------------------------------------------------------------------- /gallery_info_navy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_navy/src/item.ts -------------------------------------------------------------------------------- /gallery_info_peach/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_peach/.dclignore -------------------------------------------------------------------------------- /gallery_info_peach/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_peach/Dockerfile -------------------------------------------------------------------------------- /gallery_info_peach/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_peach/asset.json -------------------------------------------------------------------------------- /gallery_info_peach/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_peach/scene.json -------------------------------------------------------------------------------- /gallery_info_pink/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_pink/.dclignore -------------------------------------------------------------------------------- /gallery_info_pink/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_pink/Dockerfile -------------------------------------------------------------------------------- /gallery_info_pink/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_pink/asset.json -------------------------------------------------------------------------------- /gallery_info_pink/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_pink/scene.json -------------------------------------------------------------------------------- /gallery_info_pink/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_pink/src/game.ts -------------------------------------------------------------------------------- /gallery_info_pink/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_pink/src/item.ts -------------------------------------------------------------------------------- /gallery_info_red/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/.dclignore -------------------------------------------------------------------------------- /gallery_info_red/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/Dockerfile -------------------------------------------------------------------------------- /gallery_info_red/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/asset.json -------------------------------------------------------------------------------- /gallery_info_red/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/package.json -------------------------------------------------------------------------------- /gallery_info_red/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/scene.json -------------------------------------------------------------------------------- /gallery_info_red/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/src/game.ts -------------------------------------------------------------------------------- /gallery_info_red/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_red/src/item.ts -------------------------------------------------------------------------------- /gallery_info_white/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_white/.dclignore -------------------------------------------------------------------------------- /gallery_info_white/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_white/Dockerfile -------------------------------------------------------------------------------- /gallery_info_white/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_white/asset.json -------------------------------------------------------------------------------- /gallery_info_white/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/gallery_info_white/scene.json -------------------------------------------------------------------------------- /grill/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/Dockerfile -------------------------------------------------------------------------------- /grill/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/asset.json -------------------------------------------------------------------------------- /grill/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/package-lock.json -------------------------------------------------------------------------------- /grill/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/package.json -------------------------------------------------------------------------------- /grill/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/scene.json -------------------------------------------------------------------------------- /grill/sounds/Sizzle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/sounds/Sizzle.mp3 -------------------------------------------------------------------------------- /grill/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/src/game.ts -------------------------------------------------------------------------------- /grill/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/src/item.ts -------------------------------------------------------------------------------- /grill/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/grill/tsconfig.json -------------------------------------------------------------------------------- /helicopter/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/.dclignore -------------------------------------------------------------------------------- /helicopter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/Dockerfile -------------------------------------------------------------------------------- /helicopter/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/asset.json -------------------------------------------------------------------------------- /helicopter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/package-lock.json -------------------------------------------------------------------------------- /helicopter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/package.json -------------------------------------------------------------------------------- /helicopter/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/scene.json -------------------------------------------------------------------------------- /helicopter/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/src/game.ts -------------------------------------------------------------------------------- /helicopter/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/src/item.ts -------------------------------------------------------------------------------- /helicopter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/helicopter/tsconfig.json -------------------------------------------------------------------------------- /image_cube_A/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/Dockerfile -------------------------------------------------------------------------------- /image_cube_A/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/asset.json -------------------------------------------------------------------------------- /image_cube_A/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/package.json -------------------------------------------------------------------------------- /image_cube_A/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/scene.json -------------------------------------------------------------------------------- /image_cube_A/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/src/game.ts -------------------------------------------------------------------------------- /image_cube_A/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/src/item.ts -------------------------------------------------------------------------------- /image_cube_A/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_A/tsconfig.json -------------------------------------------------------------------------------- /image_cube_B/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/Dockerfile -------------------------------------------------------------------------------- /image_cube_B/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/asset.json -------------------------------------------------------------------------------- /image_cube_B/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/package.json -------------------------------------------------------------------------------- /image_cube_B/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/scene.json -------------------------------------------------------------------------------- /image_cube_B/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/src/game.ts -------------------------------------------------------------------------------- /image_cube_B/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/src/item.ts -------------------------------------------------------------------------------- /image_cube_B/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_B/tsconfig.json -------------------------------------------------------------------------------- /image_cube_C/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/Dockerfile -------------------------------------------------------------------------------- /image_cube_C/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/asset.json -------------------------------------------------------------------------------- /image_cube_C/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/package.json -------------------------------------------------------------------------------- /image_cube_C/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/scene.json -------------------------------------------------------------------------------- /image_cube_C/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/src/game.ts -------------------------------------------------------------------------------- /image_cube_C/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/src/item.ts -------------------------------------------------------------------------------- /image_cube_C/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_C/tsconfig.json -------------------------------------------------------------------------------- /image_cube_D/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/Dockerfile -------------------------------------------------------------------------------- /image_cube_D/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/asset.json -------------------------------------------------------------------------------- /image_cube_D/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/package.json -------------------------------------------------------------------------------- /image_cube_D/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/scene.json -------------------------------------------------------------------------------- /image_cube_D/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/src/game.ts -------------------------------------------------------------------------------- /image_cube_D/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/src/item.ts -------------------------------------------------------------------------------- /image_cube_D/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_D/tsconfig.json -------------------------------------------------------------------------------- /image_cube_E/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/Dockerfile -------------------------------------------------------------------------------- /image_cube_E/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/asset.json -------------------------------------------------------------------------------- /image_cube_E/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/package.json -------------------------------------------------------------------------------- /image_cube_E/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/scene.json -------------------------------------------------------------------------------- /image_cube_E/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/src/game.ts -------------------------------------------------------------------------------- /image_cube_E/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/src/item.ts -------------------------------------------------------------------------------- /image_cube_E/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_cube_E/tsconfig.json -------------------------------------------------------------------------------- /image_tools_nsfw/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_nsfw/asset.json -------------------------------------------------------------------------------- /image_tools_nsfw/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_nsfw/package.json -------------------------------------------------------------------------------- /image_tools_nsfw/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_nsfw/scene.json -------------------------------------------------------------------------------- /image_tools_nsfw/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_nsfw/src/game.ts -------------------------------------------------------------------------------- /image_tools_nsfw/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_nsfw/src/item.ts -------------------------------------------------------------------------------- /image_tools_simple/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_simple/asset.json -------------------------------------------------------------------------------- /image_tools_simple/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/image_tools_simple/scene.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/index.js -------------------------------------------------------------------------------- /invisible_cylinder/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_cylinder/.dclignore -------------------------------------------------------------------------------- /invisible_cylinder/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_cylinder/Dockerfile -------------------------------------------------------------------------------- /invisible_cylinder/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_cylinder/asset.json -------------------------------------------------------------------------------- /invisible_cylinder/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_cylinder/scene.json -------------------------------------------------------------------------------- /invisible_ramp/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/.dclignore -------------------------------------------------------------------------------- /invisible_ramp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/Dockerfile -------------------------------------------------------------------------------- /invisible_ramp/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/asset.json -------------------------------------------------------------------------------- /invisible_ramp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/package.json -------------------------------------------------------------------------------- /invisible_ramp/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/scene.json -------------------------------------------------------------------------------- /invisible_ramp/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/src/game.ts -------------------------------------------------------------------------------- /invisible_ramp/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/src/item.ts -------------------------------------------------------------------------------- /invisible_ramp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_ramp/tsconfig.json -------------------------------------------------------------------------------- /invisible_sphere/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/.dclignore -------------------------------------------------------------------------------- /invisible_sphere/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/Dockerfile -------------------------------------------------------------------------------- /invisible_sphere/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/asset.json -------------------------------------------------------------------------------- /invisible_sphere/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/package.json -------------------------------------------------------------------------------- /invisible_sphere/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/scene.json -------------------------------------------------------------------------------- /invisible_sphere/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/src/game.ts -------------------------------------------------------------------------------- /invisible_sphere/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_sphere/src/item.ts -------------------------------------------------------------------------------- /invisible_wall/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/.dclignore -------------------------------------------------------------------------------- /invisible_wall/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/Dockerfile -------------------------------------------------------------------------------- /invisible_wall/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/asset.json -------------------------------------------------------------------------------- /invisible_wall/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/package.json -------------------------------------------------------------------------------- /invisible_wall/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/scene.json -------------------------------------------------------------------------------- /invisible_wall/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/src/game.ts -------------------------------------------------------------------------------- /invisible_wall/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/src/item.ts -------------------------------------------------------------------------------- /invisible_wall/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/invisible_wall/tsconfig.json -------------------------------------------------------------------------------- /key_fantasy_gem/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/.dclignore -------------------------------------------------------------------------------- /key_fantasy_gem/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/Dockerfile -------------------------------------------------------------------------------- /key_fantasy_gem/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/asset.json -------------------------------------------------------------------------------- /key_fantasy_gem/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/package.json -------------------------------------------------------------------------------- /key_fantasy_gem/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/scene.json -------------------------------------------------------------------------------- /key_fantasy_gem/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/src/game.ts -------------------------------------------------------------------------------- /key_fantasy_gem/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/src/item.ts -------------------------------------------------------------------------------- /key_fantasy_gem/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_gem/tsconfig.json -------------------------------------------------------------------------------- /key_fantasy_iron/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/.dclignore -------------------------------------------------------------------------------- /key_fantasy_iron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/Dockerfile -------------------------------------------------------------------------------- /key_fantasy_iron/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/asset.json -------------------------------------------------------------------------------- /key_fantasy_iron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/package.json -------------------------------------------------------------------------------- /key_fantasy_iron/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/scene.json -------------------------------------------------------------------------------- /key_fantasy_iron/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/src/game.ts -------------------------------------------------------------------------------- /key_fantasy_iron/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_fantasy_iron/src/item.ts -------------------------------------------------------------------------------- /key_genesis_bronze/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_bronze/.dclignore -------------------------------------------------------------------------------- /key_genesis_bronze/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_bronze/Dockerfile -------------------------------------------------------------------------------- /key_genesis_bronze/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_bronze/asset.json -------------------------------------------------------------------------------- /key_genesis_bronze/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_bronze/scene.json -------------------------------------------------------------------------------- /key_genesis_gold/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/.dclignore -------------------------------------------------------------------------------- /key_genesis_gold/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/Dockerfile -------------------------------------------------------------------------------- /key_genesis_gold/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/asset.json -------------------------------------------------------------------------------- /key_genesis_gold/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/package.json -------------------------------------------------------------------------------- /key_genesis_gold/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/scene.json -------------------------------------------------------------------------------- /key_genesis_gold/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/src/game.ts -------------------------------------------------------------------------------- /key_genesis_gold/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_gold/src/item.ts -------------------------------------------------------------------------------- /key_genesis_silver/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_silver/.dclignore -------------------------------------------------------------------------------- /key_genesis_silver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_silver/Dockerfile -------------------------------------------------------------------------------- /key_genesis_silver/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_silver/asset.json -------------------------------------------------------------------------------- /key_genesis_silver/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_genesis_silver/scene.json -------------------------------------------------------------------------------- /key_pirates_bronze/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_bronze/.dclignore -------------------------------------------------------------------------------- /key_pirates_bronze/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_bronze/Dockerfile -------------------------------------------------------------------------------- /key_pirates_bronze/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_bronze/asset.json -------------------------------------------------------------------------------- /key_pirates_bronze/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_bronze/scene.json -------------------------------------------------------------------------------- /key_pirates_gold/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/.dclignore -------------------------------------------------------------------------------- /key_pirates_gold/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/Dockerfile -------------------------------------------------------------------------------- /key_pirates_gold/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/asset.json -------------------------------------------------------------------------------- /key_pirates_gold/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/package.json -------------------------------------------------------------------------------- /key_pirates_gold/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/scene.json -------------------------------------------------------------------------------- /key_pirates_gold/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/src/game.ts -------------------------------------------------------------------------------- /key_pirates_gold/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_gold/src/item.ts -------------------------------------------------------------------------------- /key_pirates_iron/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/.dclignore -------------------------------------------------------------------------------- /key_pirates_iron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/Dockerfile -------------------------------------------------------------------------------- /key_pirates_iron/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/asset.json -------------------------------------------------------------------------------- /key_pirates_iron/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/package.json -------------------------------------------------------------------------------- /key_pirates_iron/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/scene.json -------------------------------------------------------------------------------- /key_pirates_iron/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/src/game.ts -------------------------------------------------------------------------------- /key_pirates_iron/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/key_pirates_iron/src/item.ts -------------------------------------------------------------------------------- /keyboard/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/.dclignore -------------------------------------------------------------------------------- /keyboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/Dockerfile -------------------------------------------------------------------------------- /keyboard/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/asset.json -------------------------------------------------------------------------------- /keyboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/package-lock.json -------------------------------------------------------------------------------- /keyboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/package.json -------------------------------------------------------------------------------- /keyboard/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/scene.json -------------------------------------------------------------------------------- /keyboard/sounds/Keyboard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/sounds/Keyboard.mp3 -------------------------------------------------------------------------------- /keyboard/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/src/game.ts -------------------------------------------------------------------------------- /keyboard/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/src/item.ts -------------------------------------------------------------------------------- /keyboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/keyboard/tsconfig.json -------------------------------------------------------------------------------- /lever_fantasy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/.dclignore -------------------------------------------------------------------------------- /lever_fantasy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/Dockerfile -------------------------------------------------------------------------------- /lever_fantasy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/asset.json -------------------------------------------------------------------------------- /lever_fantasy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/package.json -------------------------------------------------------------------------------- /lever_fantasy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/scene.json -------------------------------------------------------------------------------- /lever_fantasy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/src/game.ts -------------------------------------------------------------------------------- /lever_fantasy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/src/item.ts -------------------------------------------------------------------------------- /lever_fantasy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_fantasy/tsconfig.json -------------------------------------------------------------------------------- /lever_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/.dclignore -------------------------------------------------------------------------------- /lever_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/Dockerfile -------------------------------------------------------------------------------- /lever_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/asset.json -------------------------------------------------------------------------------- /lever_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/package.json -------------------------------------------------------------------------------- /lever_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/scene.json -------------------------------------------------------------------------------- /lever_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/src/game.ts -------------------------------------------------------------------------------- /lever_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/src/item.ts -------------------------------------------------------------------------------- /lever_genesis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_genesis/tsconfig.json -------------------------------------------------------------------------------- /lever_pirates/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/.dclignore -------------------------------------------------------------------------------- /lever_pirates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/Dockerfile -------------------------------------------------------------------------------- /lever_pirates/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/asset.json -------------------------------------------------------------------------------- /lever_pirates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/package.json -------------------------------------------------------------------------------- /lever_pirates/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/scene.json -------------------------------------------------------------------------------- /lever_pirates/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/src/game.ts -------------------------------------------------------------------------------- /lever_pirates/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/src/item.ts -------------------------------------------------------------------------------- /lever_pirates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_pirates/tsconfig.json -------------------------------------------------------------------------------- /lever_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/.dclignore -------------------------------------------------------------------------------- /lever_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/Dockerfile -------------------------------------------------------------------------------- /lever_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/asset.json -------------------------------------------------------------------------------- /lever_scifi/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/package-lock.json -------------------------------------------------------------------------------- /lever_scifi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/package.json -------------------------------------------------------------------------------- /lever_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/scene.json -------------------------------------------------------------------------------- /lever_scifi/sounds/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/sounds/click.mp3 -------------------------------------------------------------------------------- /lever_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/src/game.ts -------------------------------------------------------------------------------- /lever_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/src/item.ts -------------------------------------------------------------------------------- /lever_scifi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/lever_scifi/tsconfig.json -------------------------------------------------------------------------------- /light_ceiling/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/.dclignore -------------------------------------------------------------------------------- /light_ceiling/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/Dockerfile -------------------------------------------------------------------------------- /light_ceiling/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/asset.json -------------------------------------------------------------------------------- /light_ceiling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/package.json -------------------------------------------------------------------------------- /light_ceiling/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/scene.json -------------------------------------------------------------------------------- /light_ceiling/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/src/game.ts -------------------------------------------------------------------------------- /light_ceiling/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/src/item.ts -------------------------------------------------------------------------------- /light_ceiling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_ceiling/tsconfig.json -------------------------------------------------------------------------------- /light_floor_block/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_block/.dclignore -------------------------------------------------------------------------------- /light_floor_block/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_block/Dockerfile -------------------------------------------------------------------------------- /light_floor_block/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_block/asset.json -------------------------------------------------------------------------------- /light_floor_block/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_block/scene.json -------------------------------------------------------------------------------- /light_floor_block/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_block/src/game.ts -------------------------------------------------------------------------------- /light_floor_block/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_block/src/item.ts -------------------------------------------------------------------------------- /light_floor_funky/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_funky/.dclignore -------------------------------------------------------------------------------- /light_floor_funky/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_funky/Dockerfile -------------------------------------------------------------------------------- /light_floor_funky/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_funky/asset.json -------------------------------------------------------------------------------- /light_floor_funky/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_funky/scene.json -------------------------------------------------------------------------------- /light_floor_funky/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_funky/src/game.ts -------------------------------------------------------------------------------- /light_floor_funky/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_funky/src/item.ts -------------------------------------------------------------------------------- /light_floor_lamp/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/.dclignore -------------------------------------------------------------------------------- /light_floor_lamp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/Dockerfile -------------------------------------------------------------------------------- /light_floor_lamp/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/asset.json -------------------------------------------------------------------------------- /light_floor_lamp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/package.json -------------------------------------------------------------------------------- /light_floor_lamp/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/scene.json -------------------------------------------------------------------------------- /light_floor_lamp/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/src/game.ts -------------------------------------------------------------------------------- /light_floor_lamp/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_floor_lamp/src/item.ts -------------------------------------------------------------------------------- /light_fluorescent/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_fluorescent/.dclignore -------------------------------------------------------------------------------- /light_fluorescent/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_fluorescent/Dockerfile -------------------------------------------------------------------------------- /light_fluorescent/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_fluorescent/asset.json -------------------------------------------------------------------------------- /light_fluorescent/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_fluorescent/scene.json -------------------------------------------------------------------------------- /light_fluorescent/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_fluorescent/src/game.ts -------------------------------------------------------------------------------- /light_fluorescent/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_fluorescent/src/item.ts -------------------------------------------------------------------------------- /light_gallery/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/.dclignore -------------------------------------------------------------------------------- /light_gallery/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/Dockerfile -------------------------------------------------------------------------------- /light_gallery/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/asset.json -------------------------------------------------------------------------------- /light_gallery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/package.json -------------------------------------------------------------------------------- /light_gallery/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/scene.json -------------------------------------------------------------------------------- /light_gallery/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/src/game.ts -------------------------------------------------------------------------------- /light_gallery/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/src/item.ts -------------------------------------------------------------------------------- /light_gallery/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_gallery/tsconfig.json -------------------------------------------------------------------------------- /light_rain/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/.dclignore -------------------------------------------------------------------------------- /light_rain/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/Dockerfile -------------------------------------------------------------------------------- /light_rain/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/asset.json -------------------------------------------------------------------------------- /light_rain/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/package-lock.json -------------------------------------------------------------------------------- /light_rain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/package.json -------------------------------------------------------------------------------- /light_rain/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/scene.json -------------------------------------------------------------------------------- /light_rain/sounds/Click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/sounds/Click.mp3 -------------------------------------------------------------------------------- /light_rain/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/src/game.ts -------------------------------------------------------------------------------- /light_rain/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/src/item.ts -------------------------------------------------------------------------------- /light_rain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rain/tsconfig.json -------------------------------------------------------------------------------- /light_rope/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/.dclignore -------------------------------------------------------------------------------- /light_rope/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/Dockerfile -------------------------------------------------------------------------------- /light_rope/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/asset.json -------------------------------------------------------------------------------- /light_rope/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/package-lock.json -------------------------------------------------------------------------------- /light_rope/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/package.json -------------------------------------------------------------------------------- /light_rope/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/scene.json -------------------------------------------------------------------------------- /light_rope/sounds/Click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/sounds/Click.mp3 -------------------------------------------------------------------------------- /light_rope/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/src/game.ts -------------------------------------------------------------------------------- /light_rope/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/src/item.ts -------------------------------------------------------------------------------- /light_rope/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_rope/tsconfig.json -------------------------------------------------------------------------------- /light_spotlight/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/.dclignore -------------------------------------------------------------------------------- /light_spotlight/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/Dockerfile -------------------------------------------------------------------------------- /light_spotlight/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/asset.json -------------------------------------------------------------------------------- /light_spotlight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/package.json -------------------------------------------------------------------------------- /light_spotlight/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/scene.json -------------------------------------------------------------------------------- /light_spotlight/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/src/game.ts -------------------------------------------------------------------------------- /light_spotlight/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/src/item.ts -------------------------------------------------------------------------------- /light_spotlight/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_spotlight/tsconfig.json -------------------------------------------------------------------------------- /light_table_lamp/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/.dclignore -------------------------------------------------------------------------------- /light_table_lamp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/Dockerfile -------------------------------------------------------------------------------- /light_table_lamp/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/asset.json -------------------------------------------------------------------------------- /light_table_lamp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/package.json -------------------------------------------------------------------------------- /light_table_lamp/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/scene.json -------------------------------------------------------------------------------- /light_table_lamp/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/src/game.ts -------------------------------------------------------------------------------- /light_table_lamp/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_table_lamp/src/item.ts -------------------------------------------------------------------------------- /light_wall/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/.dclignore -------------------------------------------------------------------------------- /light_wall/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/Dockerfile -------------------------------------------------------------------------------- /light_wall/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/asset.json -------------------------------------------------------------------------------- /light_wall/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/package-lock.json -------------------------------------------------------------------------------- /light_wall/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/package.json -------------------------------------------------------------------------------- /light_wall/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/scene.json -------------------------------------------------------------------------------- /light_wall/sounds/Click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/sounds/Click.mp3 -------------------------------------------------------------------------------- /light_wall/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/src/game.ts -------------------------------------------------------------------------------- /light_wall/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/src/item.ts -------------------------------------------------------------------------------- /light_wall/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall/tsconfig.json -------------------------------------------------------------------------------- /light_wall_round/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/.dclignore -------------------------------------------------------------------------------- /light_wall_round/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/Dockerfile -------------------------------------------------------------------------------- /light_wall_round/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/asset.json -------------------------------------------------------------------------------- /light_wall_round/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/package.json -------------------------------------------------------------------------------- /light_wall_round/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/scene.json -------------------------------------------------------------------------------- /light_wall_round/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/src/game.ts -------------------------------------------------------------------------------- /light_wall_round/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/light_wall_round/src/item.ts -------------------------------------------------------------------------------- /message_bubble/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/.dclignore -------------------------------------------------------------------------------- /message_bubble/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/Dockerfile -------------------------------------------------------------------------------- /message_bubble/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/asset.json -------------------------------------------------------------------------------- /message_bubble/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/package.json -------------------------------------------------------------------------------- /message_bubble/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/scene.json -------------------------------------------------------------------------------- /message_bubble/src/bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/src/bubble.ts -------------------------------------------------------------------------------- /message_bubble/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/src/game.ts -------------------------------------------------------------------------------- /message_bubble/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/src/item.ts -------------------------------------------------------------------------------- /message_bubble/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/message_bubble/tsconfig.json -------------------------------------------------------------------------------- /metal_case_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/metal_case_genesis/.dclignore -------------------------------------------------------------------------------- /metal_case_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/metal_case_genesis/Dockerfile -------------------------------------------------------------------------------- /metal_case_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/metal_case_genesis/asset.json -------------------------------------------------------------------------------- /metal_case_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/metal_case_genesis/scene.json -------------------------------------------------------------------------------- /microwave/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/Dockerfile -------------------------------------------------------------------------------- /microwave/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/asset.json -------------------------------------------------------------------------------- /microwave/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/package-lock.json -------------------------------------------------------------------------------- /microwave/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/package.json -------------------------------------------------------------------------------- /microwave/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/scene.json -------------------------------------------------------------------------------- /microwave/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/src/game.ts -------------------------------------------------------------------------------- /microwave/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/src/item.ts -------------------------------------------------------------------------------- /microwave/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/microwave/tsconfig.json -------------------------------------------------------------------------------- /mixtable/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/.dclignore -------------------------------------------------------------------------------- /mixtable/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/Dockerfile -------------------------------------------------------------------------------- /mixtable/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/asset.json -------------------------------------------------------------------------------- /mixtable/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/package-lock.json -------------------------------------------------------------------------------- /mixtable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/package.json -------------------------------------------------------------------------------- /mixtable/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/scene.json -------------------------------------------------------------------------------- /mixtable/sounds/EDMLoop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/sounds/EDMLoop.mp3 -------------------------------------------------------------------------------- /mixtable/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/src/game.ts -------------------------------------------------------------------------------- /mixtable/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/src/item.ts -------------------------------------------------------------------------------- /mixtable/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/mixtable/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/package.json -------------------------------------------------------------------------------- /padlock_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/.dclignore -------------------------------------------------------------------------------- /padlock_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/Dockerfile -------------------------------------------------------------------------------- /padlock_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/asset.json -------------------------------------------------------------------------------- /padlock_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/package.json -------------------------------------------------------------------------------- /padlock_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/scene.json -------------------------------------------------------------------------------- /padlock_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/src/game.ts -------------------------------------------------------------------------------- /padlock_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/src/item.ts -------------------------------------------------------------------------------- /padlock_genesis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_genesis/tsconfig.json -------------------------------------------------------------------------------- /padlock_pirates/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/.dclignore -------------------------------------------------------------------------------- /padlock_pirates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/Dockerfile -------------------------------------------------------------------------------- /padlock_pirates/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/asset.json -------------------------------------------------------------------------------- /padlock_pirates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/package.json -------------------------------------------------------------------------------- /padlock_pirates/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/scene.json -------------------------------------------------------------------------------- /padlock_pirates/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/src/game.ts -------------------------------------------------------------------------------- /padlock_pirates/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/src/item.ts -------------------------------------------------------------------------------- /padlock_pirates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/padlock_pirates/tsconfig.json -------------------------------------------------------------------------------- /parrot_pirates/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/.dclignore -------------------------------------------------------------------------------- /parrot_pirates/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/Dockerfile -------------------------------------------------------------------------------- /parrot_pirates/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/asset.json -------------------------------------------------------------------------------- /parrot_pirates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/package.json -------------------------------------------------------------------------------- /parrot_pirates/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/scene.json -------------------------------------------------------------------------------- /parrot_pirates/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/src/game.ts -------------------------------------------------------------------------------- /parrot_pirates/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/src/item.ts -------------------------------------------------------------------------------- /parrot_pirates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/parrot_pirates/tsconfig.json -------------------------------------------------------------------------------- /plain_text/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/.dclignore -------------------------------------------------------------------------------- /plain_text/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/Dockerfile -------------------------------------------------------------------------------- /plain_text/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/asset.json -------------------------------------------------------------------------------- /plain_text/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/package-lock.json -------------------------------------------------------------------------------- /plain_text/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/package.json -------------------------------------------------------------------------------- /plain_text/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/scene.json -------------------------------------------------------------------------------- /plain_text/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/src/game.ts -------------------------------------------------------------------------------- /plain_text/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/src/item.ts -------------------------------------------------------------------------------- /plain_text/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/plain_text/tsconfig.json -------------------------------------------------------------------------------- /police_car/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/Dockerfile -------------------------------------------------------------------------------- /police_car/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/asset.json -------------------------------------------------------------------------------- /police_car/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/package-lock.json -------------------------------------------------------------------------------- /police_car/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/package.json -------------------------------------------------------------------------------- /police_car/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/scene.json -------------------------------------------------------------------------------- /police_car/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/src/game.ts -------------------------------------------------------------------------------- /police_car/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/src/item.ts -------------------------------------------------------------------------------- /police_car/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/police_car/tsconfig.json -------------------------------------------------------------------------------- /qr_genesis_banner/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_banner/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_banner/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_banner/asset.json -------------------------------------------------------------------------------- /qr_genesis_banner/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_banner/scene.json -------------------------------------------------------------------------------- /qr_genesis_banner/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_banner/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_banner/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_banner/src/item.ts -------------------------------------------------------------------------------- /qr_genesis_box/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_box/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/asset.json -------------------------------------------------------------------------------- /qr_genesis_box/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/package.json -------------------------------------------------------------------------------- /qr_genesis_box/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/scene.json -------------------------------------------------------------------------------- /qr_genesis_box/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_box/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/src/item.ts -------------------------------------------------------------------------------- /qr_genesis_box/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_box/tsconfig.json -------------------------------------------------------------------------------- /qr_genesis_card1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card1/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_card1/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card1/asset.json -------------------------------------------------------------------------------- /qr_genesis_card1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card1/package.json -------------------------------------------------------------------------------- /qr_genesis_card1/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card1/scene.json -------------------------------------------------------------------------------- /qr_genesis_card1/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card1/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_card1/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card1/src/item.ts -------------------------------------------------------------------------------- /qr_genesis_card2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card2/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_card2/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card2/asset.json -------------------------------------------------------------------------------- /qr_genesis_card2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card2/package.json -------------------------------------------------------------------------------- /qr_genesis_card2/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card2/scene.json -------------------------------------------------------------------------------- /qr_genesis_card2/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card2/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_card2/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_card2/src/item.ts -------------------------------------------------------------------------------- /qr_genesis_note/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_note/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/asset.json -------------------------------------------------------------------------------- /qr_genesis_note/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/package.json -------------------------------------------------------------------------------- /qr_genesis_note/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/scene.json -------------------------------------------------------------------------------- /qr_genesis_note/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_note/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/src/item.ts -------------------------------------------------------------------------------- /qr_genesis_note/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_note/tsconfig.json -------------------------------------------------------------------------------- /qr_genesis_plane/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_plane/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_plane/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_plane/asset.json -------------------------------------------------------------------------------- /qr_genesis_plane/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_plane/package.json -------------------------------------------------------------------------------- /qr_genesis_plane/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_plane/scene.json -------------------------------------------------------------------------------- /qr_genesis_plane/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_plane/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_plane/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_plane/src/item.ts -------------------------------------------------------------------------------- /qr_genesis_poster/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_poster/Dockerfile -------------------------------------------------------------------------------- /qr_genesis_poster/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_poster/asset.json -------------------------------------------------------------------------------- /qr_genesis_poster/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_poster/scene.json -------------------------------------------------------------------------------- /qr_genesis_poster/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_poster/src/game.ts -------------------------------------------------------------------------------- /qr_genesis_poster/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_genesis_poster/src/item.ts -------------------------------------------------------------------------------- /qr_pirates_note/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/Dockerfile -------------------------------------------------------------------------------- /qr_pirates_note/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/asset.json -------------------------------------------------------------------------------- /qr_pirates_note/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/package.json -------------------------------------------------------------------------------- /qr_pirates_note/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/scene.json -------------------------------------------------------------------------------- /qr_pirates_note/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/src/game.ts -------------------------------------------------------------------------------- /qr_pirates_note/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/src/item.ts -------------------------------------------------------------------------------- /qr_pirates_note/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_pirates_note/tsconfig.json -------------------------------------------------------------------------------- /qr_scifi_frame/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/Dockerfile -------------------------------------------------------------------------------- /qr_scifi_frame/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/asset.json -------------------------------------------------------------------------------- /qr_scifi_frame/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/package.json -------------------------------------------------------------------------------- /qr_scifi_frame/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/scene.json -------------------------------------------------------------------------------- /qr_scifi_frame/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/src/game.ts -------------------------------------------------------------------------------- /qr_scifi_frame/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/src/item.ts -------------------------------------------------------------------------------- /qr_scifi_frame/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/qr_scifi_frame/tsconfig.json -------------------------------------------------------------------------------- /radio/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/.dclignore -------------------------------------------------------------------------------- /radio/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/Dockerfile -------------------------------------------------------------------------------- /radio/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/asset.json -------------------------------------------------------------------------------- /radio/models/radio.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/models/radio.glb -------------------------------------------------------------------------------- /radio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/package-lock.json -------------------------------------------------------------------------------- /radio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/package.json -------------------------------------------------------------------------------- /radio/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/scene.json -------------------------------------------------------------------------------- /radio/sounds/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/sounds/click.mp3 -------------------------------------------------------------------------------- /radio/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/src/game.ts -------------------------------------------------------------------------------- /radio/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/src/item.ts -------------------------------------------------------------------------------- /radio/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/src/utils.ts -------------------------------------------------------------------------------- /radio/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio/tsconfig.json -------------------------------------------------------------------------------- /radio_cyberpunk/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/.dclignore -------------------------------------------------------------------------------- /radio_cyberpunk/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/Dockerfile -------------------------------------------------------------------------------- /radio_cyberpunk/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/asset.json -------------------------------------------------------------------------------- /radio_cyberpunk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/package.json -------------------------------------------------------------------------------- /radio_cyberpunk/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/scene.json -------------------------------------------------------------------------------- /radio_cyberpunk/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/src/game.ts -------------------------------------------------------------------------------- /radio_cyberpunk/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/src/item.ts -------------------------------------------------------------------------------- /radio_cyberpunk/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/src/utils.ts -------------------------------------------------------------------------------- /radio_cyberpunk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/radio_cyberpunk/tsconfig.json -------------------------------------------------------------------------------- /record_player/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/Dockerfile -------------------------------------------------------------------------------- /record_player/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/asset.json -------------------------------------------------------------------------------- /record_player/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/package.json -------------------------------------------------------------------------------- /record_player/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/scene.json -------------------------------------------------------------------------------- /record_player/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/src/game.ts -------------------------------------------------------------------------------- /record_player/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/src/item.ts -------------------------------------------------------------------------------- /record_player/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/record_player/tsconfig.json -------------------------------------------------------------------------------- /scoreboard_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scoreboard_genesis/.dclignore -------------------------------------------------------------------------------- /scoreboard_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scoreboard_genesis/Dockerfile -------------------------------------------------------------------------------- /scoreboard_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scoreboard_genesis/asset.json -------------------------------------------------------------------------------- /scoreboard_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scoreboard_genesis/scene.json -------------------------------------------------------------------------------- /scroll_fantasy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/.dclignore -------------------------------------------------------------------------------- /scroll_fantasy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/Dockerfile -------------------------------------------------------------------------------- /scroll_fantasy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/asset.json -------------------------------------------------------------------------------- /scroll_fantasy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/package.json -------------------------------------------------------------------------------- /scroll_fantasy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/scene.json -------------------------------------------------------------------------------- /scroll_fantasy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/src/game.ts -------------------------------------------------------------------------------- /scroll_fantasy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/src/item.ts -------------------------------------------------------------------------------- /scroll_fantasy/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_fantasy/tsconfig.json -------------------------------------------------------------------------------- /scroll_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/.dclignore -------------------------------------------------------------------------------- /scroll_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/Dockerfile -------------------------------------------------------------------------------- /scroll_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/asset.json -------------------------------------------------------------------------------- /scroll_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/package.json -------------------------------------------------------------------------------- /scroll_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/scene.json -------------------------------------------------------------------------------- /scroll_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/src/game.ts -------------------------------------------------------------------------------- /scroll_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/src/item.ts -------------------------------------------------------------------------------- /scroll_genesis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_genesis/tsconfig.json -------------------------------------------------------------------------------- /scroll_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/.dclignore -------------------------------------------------------------------------------- /scroll_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/Dockerfile -------------------------------------------------------------------------------- /scroll_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/asset.json -------------------------------------------------------------------------------- /scroll_scifi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/package.json -------------------------------------------------------------------------------- /scroll_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/scene.json -------------------------------------------------------------------------------- /scroll_scifi/sounds/open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/sounds/open.mp3 -------------------------------------------------------------------------------- /scroll_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/src/game.ts -------------------------------------------------------------------------------- /scroll_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/src/item.ts -------------------------------------------------------------------------------- /scroll_scifi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/scroll_scifi/tsconfig.json -------------------------------------------------------------------------------- /sign_open_closed/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/sign_open_closed/Dockerfile -------------------------------------------------------------------------------- /sign_open_closed/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/sign_open_closed/asset.json -------------------------------------------------------------------------------- /sign_open_closed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/sign_open_closed/package.json -------------------------------------------------------------------------------- /sign_open_closed/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/sign_open_closed/scene.json -------------------------------------------------------------------------------- /sign_open_closed/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/sign_open_closed/src/game.ts -------------------------------------------------------------------------------- /siren_fantasy/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/.dclignore -------------------------------------------------------------------------------- /siren_fantasy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/Dockerfile -------------------------------------------------------------------------------- /siren_fantasy/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/asset.json -------------------------------------------------------------------------------- /siren_fantasy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/package.json -------------------------------------------------------------------------------- /siren_fantasy/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/scene.json -------------------------------------------------------------------------------- /siren_fantasy/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/src/game.ts -------------------------------------------------------------------------------- /siren_fantasy/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_fantasy/src/item.ts -------------------------------------------------------------------------------- /siren_genesis/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/.dclignore -------------------------------------------------------------------------------- /siren_genesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/Dockerfile -------------------------------------------------------------------------------- /siren_genesis/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/asset.json -------------------------------------------------------------------------------- /siren_genesis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/package.json -------------------------------------------------------------------------------- /siren_genesis/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/scene.json -------------------------------------------------------------------------------- /siren_genesis/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/src/game.ts -------------------------------------------------------------------------------- /siren_genesis/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_genesis/src/item.ts -------------------------------------------------------------------------------- /siren_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/.dclignore -------------------------------------------------------------------------------- /siren_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/Dockerfile -------------------------------------------------------------------------------- /siren_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/asset.json -------------------------------------------------------------------------------- /siren_scifi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/package.json -------------------------------------------------------------------------------- /siren_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/scene.json -------------------------------------------------------------------------------- /siren_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/src/game.ts -------------------------------------------------------------------------------- /siren_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/src/item.ts -------------------------------------------------------------------------------- /siren_scifi/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/siren_scifi/tsconfig.json -------------------------------------------------------------------------------- /slushie_machine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/slushie_machine/Dockerfile -------------------------------------------------------------------------------- /slushie_machine/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/slushie_machine/asset.json -------------------------------------------------------------------------------- /slushie_machine/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/slushie_machine/scene.json -------------------------------------------------------------------------------- /social_media_fb/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/social_media_fb/.dclignore -------------------------------------------------------------------------------- /social_media_fb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/social_media_fb/Dockerfile -------------------------------------------------------------------------------- /social_media_fb/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/social_media_fb/asset.json -------------------------------------------------------------------------------- /social_media_fb/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/social_media_fb/scene.json -------------------------------------------------------------------------------- /spark/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/Dockerfile -------------------------------------------------------------------------------- /spark/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/asset.json -------------------------------------------------------------------------------- /spark/models/Spark.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/models/Spark.glb -------------------------------------------------------------------------------- /spark/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/package-lock.json -------------------------------------------------------------------------------- /spark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/package.json -------------------------------------------------------------------------------- /spark/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/scene.json -------------------------------------------------------------------------------- /spark/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/src/game.ts -------------------------------------------------------------------------------- /spark/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/src/item.ts -------------------------------------------------------------------------------- /spark/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/spark/tsconfig.json -------------------------------------------------------------------------------- /speakers/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/Dockerfile -------------------------------------------------------------------------------- /speakers/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/asset.json -------------------------------------------------------------------------------- /speakers/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/package-lock.json -------------------------------------------------------------------------------- /speakers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/package.json -------------------------------------------------------------------------------- /speakers/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/scene.json -------------------------------------------------------------------------------- /speakers/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/src/game.ts -------------------------------------------------------------------------------- /speakers/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/src/item.ts -------------------------------------------------------------------------------- /speakers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/speakers/tsconfig.json -------------------------------------------------------------------------------- /telephone_booth/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/telephone_booth/Dockerfile -------------------------------------------------------------------------------- /telephone_booth/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/telephone_booth/asset.json -------------------------------------------------------------------------------- /telephone_booth/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/telephone_booth/scene.json -------------------------------------------------------------------------------- /tools/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/.dclignore -------------------------------------------------------------------------------- /tools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/Dockerfile -------------------------------------------------------------------------------- /tools/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/asset.json -------------------------------------------------------------------------------- /tools/models/tools.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/models/tools.glb -------------------------------------------------------------------------------- /tools/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/package-lock.json -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/package.json -------------------------------------------------------------------------------- /tools/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/scene.json -------------------------------------------------------------------------------- /tools/src/animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/src/animation.ts -------------------------------------------------------------------------------- /tools/src/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/src/delay.ts -------------------------------------------------------------------------------- /tools/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/src/game.ts -------------------------------------------------------------------------------- /tools/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/src/item.ts -------------------------------------------------------------------------------- /tools/src/tween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/src/tween.ts -------------------------------------------------------------------------------- /tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tools/tsconfig.json -------------------------------------------------------------------------------- /trapdoor_scifi/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trapdoor_scifi/.dclignore -------------------------------------------------------------------------------- /trapdoor_scifi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trapdoor_scifi/Dockerfile -------------------------------------------------------------------------------- /trapdoor_scifi/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trapdoor_scifi/asset.json -------------------------------------------------------------------------------- /trapdoor_scifi/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trapdoor_scifi/scene.json -------------------------------------------------------------------------------- /trapdoor_scifi/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trapdoor_scifi/src/game.ts -------------------------------------------------------------------------------- /trapdoor_scifi/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trapdoor_scifi/src/item.ts -------------------------------------------------------------------------------- /trigger_area/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/.dclignore -------------------------------------------------------------------------------- /trigger_area/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/Dockerfile -------------------------------------------------------------------------------- /trigger_area/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/asset.json -------------------------------------------------------------------------------- /trigger_area/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/package.json -------------------------------------------------------------------------------- /trigger_area/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/scene.json -------------------------------------------------------------------------------- /trigger_area/src/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/src/area.ts -------------------------------------------------------------------------------- /trigger_area/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/src/game.ts -------------------------------------------------------------------------------- /trigger_area/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/src/item.ts -------------------------------------------------------------------------------- /trigger_area/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/src/utils.ts -------------------------------------------------------------------------------- /trigger_area/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/trigger_area/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.item-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/tsconfig.item-base.json -------------------------------------------------------------------------------- /upgrade-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/upgrade-deps.sh -------------------------------------------------------------------------------- /video_stream/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/.dclignore -------------------------------------------------------------------------------- /video_stream/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/Dockerfile -------------------------------------------------------------------------------- /video_stream/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/asset.json -------------------------------------------------------------------------------- /video_stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/package.json -------------------------------------------------------------------------------- /video_stream/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/scene.json -------------------------------------------------------------------------------- /video_stream/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/src/game.ts -------------------------------------------------------------------------------- /video_stream/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/src/item.ts -------------------------------------------------------------------------------- /video_stream/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/video_stream/tsconfig.json -------------------------------------------------------------------------------- /wall_fan/.dclignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/.dclignore -------------------------------------------------------------------------------- /wall_fan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/Dockerfile -------------------------------------------------------------------------------- /wall_fan/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/asset.json -------------------------------------------------------------------------------- /wall_fan/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/package-lock.json -------------------------------------------------------------------------------- /wall_fan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/package.json -------------------------------------------------------------------------------- /wall_fan/scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/scene.json -------------------------------------------------------------------------------- /wall_fan/src/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/src/game.ts -------------------------------------------------------------------------------- /wall_fan/src/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/src/item.ts -------------------------------------------------------------------------------- /wall_fan/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentraland/smart-items/HEAD/wall_fan/tsconfig.json --------------------------------------------------------------------------------