Ice Hocket is already supported from the community
geod
563
Posts
54
Topics
1,229
Followers
A member registered Mar 28, 2016 · View creator page →
Creator of
3dSen transforms NES games into stunning 3D voxel dioramas. Relive your favorite retro titles like never before!
Action
Breathing new life into classic NES games by magically converting it into 3D and letting you play in VR
Simulation
Recent community posts
3dSen Maker community » Profile Repository · Created a new topic Tetris Nintendo - Hint Shape Disabled
3dSen PC - The 3D NES Emulator comments · Replied to eric-gamer1 in 3dSen PC - The 3D NES Emulator comments
3dSen Maker community » Work In Progress · Replied to Seraphim190 game studios in Fantasy zone profile
3dSen PC - The 3D NES Emulator comments · Replied to Darknior in 3dSen PC - The 3D NES Emulator comments
🚀 3dSenVR v1.0 is Here – A Dream 10 Years in the Making comments · Replied to Rooster in 🚀 3dSenVR v1.0 is Here – A Dream 10 Years in the Making comments
3dSen PC - The 3D NES Emulator comments · Replied to Ben McLean in 3dSen PC - The 3D NES Emulator comments
3dSen PC - The 3D NES Emulator comments · Replied to Chrisveria in 3dSen PC - The 3D NES Emulator comments
3dSen VR - 3D NES Emulator For Virtual Reality community » Support · Posted in Trinus PSVR and 3dSen VR
3dSen VR - 3D NES Emulator For Virtual Reality community » Support · Replied to M4nz3 in Where is the Mac version?
3dSen VR - 3D NES Emulator For Virtual Reality community » Support · Posted in Where is the Mac version?
3dSen VR - 3D NES Emulator For Virtual Reality community » Support · Posted in Where is the Mac version?
3dSen PC - The 3D NES Emulator comments · Replied to Westnorth Computing ™ in 3dSen PC - The 3D NES Emulator comments
3dSen VR - 3D NES Emulator For Virtual Reality community » Support · Posted in Are V2 profiles no longer supported?
3dSen VR - 3D NES Emulator For Virtual Reality community » General Discussion · Replied to Snikabarz in Any plans for Quest!?
Overlap Script
Effect: When the platform overlaps a character or a bullet, it will become semi-transparent.
Usage: tag all platform and character/bullet you want to have this effect with the same tag of this script
function Start()
list = {{},{}}
list1 = list[1]
list2 = list[2]
end
function Update()
for i = 1,#list1 do
list1[i] = nil
end
for i = 1,#list2 do
list2[i] = nil
end
end
function UpdateS()
scene = 1
local index = shape.Bg and 1 or 2
local tlist = list[index]
tlist[#tlist+1] = shape
end
function LateUpdate()
if #list2 > 0 then
--print(#list1)
for i = 1,#list1 do
obj1 = list1[i]
for j = 1,#list2 do
if obj1:Overlap(list2[j]) then
obj1.Alpha = 0.5
break
end
end
end
end
end



