JS3D引擎 -CopperLicht

3D No Comments »

基于HTML5,采用WebGL加速的JS3D引擎,运行流畅。

地址:http://www.ambiera.com/copperlicht/index.html
文档:http://www.ambiera.com/copperlicht/documentation/index.html

运行环境: chrome,Firefox

Quake 3 Map Demo

Tags: , ,

Balder: Silverlight 3D Engine

3D, News No Comments »

filedownload

balder是第一个基于Silverlight开发的3D引擎.使用了webGL进行加速。作者的Blog>>>

一段示例代码:

using Balder.Core.Execution;
using Balder.Core.Objects.Geometries;
using System;
using Balder.Core.Lighting;
using Balder.Core;
using Colors=System.Windows.Media.Colors;

namespace Balder.Silverlight4.TestApp
{
    public class MyGame : Game
    {
        public override void OnInitialize()
        {

            Camera.Position.X = 0;
            Camera.Position.Y = 0;
            Camera.Position.Z = -80;

            var light = new OmniLight();
            light.Diffuse = Color.FromSystemColor(Colors.Green);
            light.Ambient = Color.FromSystemColor(Colors.Green);
            light.Specular = Color.FromSystemColor(Colors.White);
            light.Position.X = 0;
            light.Position.Y = 0;
            light.Position.Z = -130;

            Scene.AddNode(light);

            base.OnInitialize();
        }

        public override void OnLoadContent()
        {
            var teapot = ContentManager.Load("teapot.ase");
            Scene.AddNode(teapot);
            base.OnLoadContent();
        }

        private double _sin;

        public override void OnUpdate()
        {

            Camera.Position.X = (float)(Math.Sin(_sin)*80);
            Camera.Position.Y = 0;
            Camera.Position.Z = (float)(Math.Cos(_sin) * 80);

            _sin += 0.05;
            base.OnUpdate();
        }

    }
}
Tags: , , ,

在Chrome中启用WebGL

3D No Comments »

打开chrome的快捷键属性 在 “目标:”后加入  –enable-webgl –no-sandbox

测试>>>

Tags: , ,

WebGL Cheat Sheet

3D No Comments »

WebGL Cheat Sheet PDF

WebGL Cheat Sheet HTML

Tags: ,

Away3d工具PreFab 3D

3D, Tools No Comments »

qqe688aae59bbee69caae591bde5908d

可以导入模型进行编辑,如更改UV,加灯光等。可以输出模型文件或AS类

项目网址:http://www.closier.nl/prefab/

安装: http://www.closier.nl/downloads/prefab/prefab.air

Tags: , ,

Web3D发展路上的新种族 JS3D

3D 1 Comment »

在Web3D快速发展的开始阶段,除了flash3D各种技术的发展外。有另一股力量已经涌现,那就是JS3D.本日志将会分享目前线上的新种族的情况.

1.WebGL的宣布,JavaScript的控制OpenGL标准.(OpenGL的负责人宣布)
opengl-logo-1-1
project:http://blog.wolfire.com/2009/09/preview-of-webkits-webgl-canvas3d/
Khronos Details WebGL Initiative to Bring Hardware-Accelerated 3D Graphics to the Internet
JavaScript Binding to OpenGL ES 2.0 for Rich 3D Web Graphics without Browser Plugins;
Wide industry Support from Major Browser Vendors including Google, Mozilla and Opera; Specification will be Available Royalty-free to all Developers

4th August, 2009 – New Orleans, SIGGRAPH 2009 – The Khronos™ Group, today announced more details on its new WebGL™ working group for enabling hardware-accelerated 3D graphics in Web pages without the need for browser plug-ins. First announced at the Game Developers Conference in March of 2009, the WebGL working group includes many industry leaders such as AMD, Ericsson, Google, Mozilla, NVIDIA and Opera. The WebGL working group is defining a JavaScript binding to OpenGL® ES 2.0 to enable rich 3D graphics within a browser on any platform supporting the OpenGL or OpenGL ES graphics standards. The working group is developing the specification to provide content portability across diverse browsers and platforms, including the capability of portable, secure shader programs. WebGL will be a royalty-free standard developed under the proven Khronos development process, with the target of a first public release in first half of 2010. Khronos warmly welcomes any interested company to become a member and participate in the development of the WebGL specification.

2.O3D
API: http://code.google.com/apis/o3d/
Demos:http://code.google.com/apis/o3d/docs/samplesdirectory.html#demos

3.V8 JavaScript Engine

v8gl2
code: http://code.google.com/p/v8/
Start:http://github.com/philogb/v8-gl/tree/master#readme

Tags: , , , ,

PV3D 互动站点 Big and Small

3D, News No Comments »

3D+2D 卡通结合,非常的有趣互动创意。

qqe688aae59bbee69caae591bde5908d
qqe688aae59bbee69caae591bde5908d1
http://www.pluginmedia.net/clients/bigandsmall/phase1c_release/game/

Tags: ,

Flash多人3D网络游戏Tanki Online

3D, News No Comments »

Alternativa3D的基于flash player10 的 Tanki Online开始公测了
tank_src1

http://www.tankionline.com/

Tags: , ,

flash3D游戏集[20090928更新]

3D 2 Comments »

发现越来越多的3d的游戏应用。。这篇日志做一个集中地把。

发现一些的flash3d的游戏作品,经典的格斗风格,镜头控制感觉都不错。。赞

11

再来一款:

e69caae591bde5908d

再来一款


e69caae591bde5908d1

3d赛车:
e69caae591bde5908d2

倾斜滚球 Tilt
e69caae591bde5908d2

e69caae591bde5908d2

e69caae591bde5908d2

詹森闯太空 Space Station Jason
e69caae591bde5908d2

Renegade Commanders
e69caae591bde5908d2

Murloc rpg
qqe688aae59bbee69caae591bde5908d4

3D桌球
qqe688aae59bbee69caae591bde5908d5

qqe688aae59bbee69caae591bde5908d6

Tags: ,

Flash3V 3DEngine

3D, Flash3v No Comments »
flash3v 3DEngine截图

flash3v 3DEngine截图

Flash3V 3DEngine

作者:Vibo  Email:vibo_cn@hotmail.com

Google Code: http://code.google.com/p/flash3v
Groups:Flash3V Group

介绍:
自己在业余时间制作的3D引擎.目前正在将代码迁移到Player10中,暂且不开源。具体细节将在以后公布。

2010 Vibo’s Blog — FLASH3V | Powered by WordPress |京ICP备09027267号