在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):bjornbytes/lovr开源软件地址(OpenSource Url):https://github.com/bjornbytes/lovr开源编程语言(OpenSource Language):C 98.9%开源软件介绍(OpenSource Introduction):LÖVR
You can use LÖVR to easily create VR experiences without much setup or programming experience. The framework is tiny, fast, open source, and supports lots of different platforms and devices. Homepage | Documentation | FAQ Features
Getting StartedIt's really easy to get started making things with LÖVR. Grab a copy of the executable from https://lovr.org/download,
then write a Hello Worldfunction lovr.draw()
lovr.graphics.print('Hello World!', 0, 1.7, -3, .5)
end Spinning Cubefunction lovr.draw()
lovr.graphics.cube('line', 0, 1.7, -1, .5, lovr.timer.getTime())
end Hand Trackingfunction lovr.draw()
for _, hand in ipairs(lovr.headset.getHands()) do
lovr.graphics.sphere(vec3(lovr.headset.getPosition(hand)), .1)
end
end 3D Modelsfunction lovr.load()
model = lovr.graphics.newModel('model.gltf')
end
function lovr.draw()
model:draw(x, y, z)
end You can try more examples in your browser on the docs page. BuildingYou can build LÖVR from source using CMake. Here are the steps using the command line: mkdir build
cd build
cmake ..
cmake --build . See the Compiling Guide for more info. Resources
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论