voxel.css

A lightweight 3D CSS voxel library.

  • 所有者: HunterLarco/voxel.css
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

#voxel.css

JavaScript 3D library

The goal of this project is to provide a lightweight 3D CSS library with very simple implementation.

DemoDocumentation

Usage

Download the minified library and css file and include both in your html.

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<title>voxel.css</title>
		<link rel="stylesheet" href="css/voxel.css"></link>
	</head>
	<body>
		<script src="js/voxelcss.js"></script>
	</body>
</html>

This code creates a scene, a savable world, and an editor that allow you to immediately begin building worlds with voxel.css and see how little code is required to make complex 3D voxel games. If you've built anything in the past it auto-loads your previous build instead of creating a new one.

function init(element) {
	var PI          = Math.PI;
	var scene       = new voxelcss.Scene();
	var lightSource = new voxelcss.LightSource(300, 300, 300, 750, 0.3, 1);
	var world       = new voxelcss.World(scene);
	var editor      = new voxelcss.Editor(world);

	scene.rotate(-PI / 8, PI / 4, 0);
	scene.attach(element);
	scene.addLightSource(lightSource);

	editor.enableAutoSave();
	editor.load();

	if (world.getVoxels().length === 0) {
		editor.add(new voxelcss.Voxel(0, 0, 0, 100, {
			mesh: voxelcss.Meshes.grass
		}));
	}
}

init(document.body);

If everything went well you should see this.

Core Concepts

There are 4 important classes. Scene, World, Editor and of course Voxel. The distinctions between a Scene, World, and Editor are important to know if you are to leverage them well. A Scene is simply a camera. It can rotate, pan, zoom, and contain voxels. Meanwhile a World can save the state of any voxels added to it. This is important as voxels that are in a scene but not in a world are not savable. Lastly the Editor creates all the mouse events necessary to allow the user to add and remove blocks from a World with the added option to autosave all changes.

Properties and Classes

Core ClassesInterfaces

Future Features

  • Shadows
  • Firefox back-face culling
  • Mobile touch support

Projects built with voxel.css

Change log

releases

主要指标

概览
名称与所有者HunterLarco/voxel.css
主编程语言CSS
编程语言HTML (语言数: 4)
平台
许可证MIT License
所有者活动
创建于2015-12-08 23:48:04
推送于2016-05-09 10:05:30
最后一次提交2016-03-24 22:44:44
发布数4
最新版本名称1.1.0 (发布于 )
第一版名称1.0.0 (发布于 )
用户参与
星数3.4k
关注者数90
派生数129
提交数126
已启用问题?
问题数15
打开的问题数10
拉请求数11
打开的拉请求数0
关闭的拉请求数8
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?