The build is for Linux x86, not for Linux ARM.
geod
Creator of
Recent community posts
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
I haven't started porting yet still focus on profile creation task. But honestly i think you would have to if that thing ever happens.
- This is a real technical chalenge - optimization 3dSen VR for the mobile devices. Unlike games with static 3d models, all 3dSen models are dynamically generated in realtime on the fly -> light and shadow rendering are very costly performance-wise.
- Management issue: there is no easy way to distribute keys for existed 3dSen VR users from itch and Steam. And how about 3dSen PC users? Already get headache thinking about it
- Maybe a deep discount at the launch would be a practical solution for all users who are already aware of 3dSen VR.



