四 04
Tags:
3D,
Web3D,
webGL
二 12

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:
3D,
silverlight3D,
Web3D,
webGL
二 10
打开chrome的快捷键属性 在 “目标:”后加入 –enable-webgl –no-sandbox
测试>>>
Tags:
3D,
Web3D,
webGL
九 16
Tags:
3D,
away3d,
prefab
九 03
在Web3D快速发展的开始阶段,除了flash3D各种技术的发展外。有另一股力量已经涌现,那就是JS3D.本日志将会分享目前线上的新种族的情况.
1.WebGL的宣布,JavaScript的控制OpenGL标准.(OpenGL的负责人宣布)

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

code: http://code.google.com/p/v8/
Start:http://github.com/philogb/v8-gl/tree/master#readme
Tags:
3D,
JS,
JS3D,
Web3D,
webGL
六 07
3D+2D 卡通结合,非常的有趣互动创意。


http://www.pluginmedia.net/clients/bigandsmall/phase1c_release/game/
Tags:
3D,
PV3D
六 07
Alternativa3D的基于flash player10 的 Tanki Online开始公测了

http://www.tankionline.com/
Tags:
3D,
Alternativa3D,
game
五 04
发现越来越多的3d的游戏应用。。这篇日志做一个集中地把。
发现一些的flash3d的游戏作品,经典的格斗风格,镜头控制感觉都不错。。赞

再来一款:

再来一款

3d赛车:

倾斜滚球 Tilt



詹森闯太空 Space Station Jason

Renegade Commanders

Murloc rpg

3D桌球


Tags:
3D,
game
三 12

flash3v 3DEngine截图
Flash3V 3DEngine
作者:Vibo Email:vibo_cn@hotmail.com
Google Code: http://code.google.com/p/flash3v
Groups:Flash3V Group
介绍:
自己在业余时间制作的3D引擎.目前正在将代码迁移到Player10中,暂且不开源。具体细节将在以后公布。
Recent Comments