Laya3d API

scene

  • 創(chuàng)建場景
    var scene = Laya.stage.addChild(new Laya.Scene());
  • 加載外部場景
Laya.loader.create("LayaScene_01/loveScene.ls",
Laya.Handler.create(this, this.completeHandler), null, Laya.Scene);
function completeHandler() {
    // 第一種方法 獲取場景
    // var scene=Laya.Scene.load("LayaScene_01/loveScene.ls");
    // 第二種方法闪檬,緩存后加載方式
    var scene = Laya.loader.getRes("LayaScene_01/loveScene.ls");
    Laya.stage.addChild(scene);
}

camera

  • 創(chuàng)建相機 (縱橫比, 近距裁剪, 遠距裁剪)
    var camera = new Laya.Camera(0,0.1,100);
camera.nearPlane = 0;
camera.farPlane = 100;
  • 添加到場景
    scene.addChild(camera);
  • 視野角度 (90度)
    camera.fieldOfView = 90;
  • 移動相機
    camera.transform.translate(new Laya.Vector3(0,0,3),false);
  • 旋轉(zhuǎn)
    camera.transform.rotate(new Laya.Vector3(0,0,3),true,true);
  • 正交投影
    camera.orthographicProjection = true;
  • 正交大小
    camera.orthographicVerticalSize = 7;
  • 看向某點方向 (某點, 坐標(biāo)系朝向)
camera.transform.lookAt(box.transform.position,new Laya.Vector3(0,1,0));
  • 相機下的背景色
    camera.clearColor = new Laya.Vector3(0.5,0.5,0.6);
  • 天空盒
var skyBox:Laya.SkyBox = new Laya.SkyBox();
//必須設(shè)置, 否則無法顯示天空
camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY;
//綁定
camera.sky = skyBox;
加載貼圖
skyBox.textureCube = Laya.TextureCube.load("skyBox/skyCube.ltc");
  • 多鏡頭
var camera1=new Laya.Camera();
camera1.viewport=new Laya.Viewport(0,0,640,720);

var camera2=new Laya.Camera();
camera2.viewport=new Laya.Viewport(640,0,640,720);

light

  • 點光源
//創(chuàng)建點光
var light = scene.addChild(new Laya.PointLight());
//移動燈光位置
light.transform.translate(new Laya.Vector3(-3,5,0));
//設(shè)置點光照亮范圍
light.range = 6;
//設(shè)置點光的衰減
light.attenuation = new Laya.Vector3(0.01,0.01,0.03);
  • 平行光
//創(chuàng)建平行光
var light = scene.addChild(new Laya.DirectionLight());
//設(shè)置平行光的方向
light.direction = new Laya.Vector3(0.5, -1, 0);
  • 聚光燈
//添加聚光
var light = scene.addChild(new Laya.SpotLight());
//設(shè)置聚光的位置
light.transform.position = new Laya.Vector3(0,5,0);
//設(shè)置聚光的衰減
light.attenuation = new Laya.Vector3(0.1, 0, 0.1);
//設(shè)置聚光的方向
light.direction=new Laya.Vector3(0, -1, 0);
//設(shè)置聚光范圍
light.range = 5;
//設(shè)置聚光值
light.spot = 5;
  • 環(huán)境顏色
//貌似環(huán)境色從燈光中去除了, 材質(zhì)中去找
light.ambientColor = new Laya.Vector3(1,1,0);
  • 漫反射顏色
//設(shè)置燈光的漫反射色為純紅色
//light.diffuseColor = new Laya.Vector3(1,0,0);
//設(shè)置燈光顏色為純紅色(與diffuseColor作用相同)
light.color = new Laya.Vector3(1,0,0);
  • 高光色
//設(shè)置高光顏色為藍 貌似從燈光中去除了, 材質(zhì)中去找
light.specularColor = new Laya.Vector3(0.5,0.5,1);
  • 投影 shadow
//添加燈光投影
light.shadow=true;
//產(chǎn)生投影的范圍(如過小將不會產(chǎn)生投影)
light.shadowDistance=45;
//生成陰影貼圖數(shù)量
light.shadowPSSMCount = 1;
//模糊等級,越大越高,效果更好,更耗性能
light.shadowPCFType=1;
//投影質(zhì)量
light.shadowResolution=2048;

材質(zhì)需要設(shè)置

//產(chǎn)生陰影
sphere.meshRender.castShadow=true;
//接受陰影
box.meshRender.receiveShadow=true;

模型 Mesh / Geometry

  • 創(chuàng)建盒子
//創(chuàng)建盒子模型(參數(shù)為:長克锣、寬赖晶、高律适,單位:米)
var boxMesh:Laya.BoxMesh=new Laya.BoxMesh(2,2,2);
//創(chuàng)建模型顯示對象
var box3D:Laya.MeshSprite3D=new Laya.MeshSprite3D(boxMesh);
  • 創(chuàng)建球體
//創(chuàng)建球體模型(參數(shù)為:半徑辐烂、水平層數(shù)、垂直層數(shù))
var sphereMesh:Laya.SphereMesh=new Laya.SphereMesh(1,8,8);
//創(chuàng)建模型顯示對象
var sphere3D:Laya.MeshSprite3D=new Laya.MeshSprite3D(sphereMesh);
  • 創(chuàng)建圓柱體
//創(chuàng)建圓柱體模型(參數(shù)為:半徑捂贿、高纠修、圓截面線段數(shù))
var cylinderMesh:Laya.CylinderMesh=new Laya.CylinderMesh(1,2,8);
//創(chuàng)建模型顯示對象
var cylinder3D:Laya.MeshSprite3D=new Laya.MeshSprite3D(cylinderMesh);
  • 模型貼圖
//創(chuàng)建材質(zhì)----------------------------------
var material:Laya.StandardMaterial = new Laya.StandardMaterial();
//為模型賦材質(zhì)(單個材質(zhì)可賦給多個模型)
box3D.meshRender.material = material;
  • 加載建模和事件偵聽
//加載導(dǎo)出的卡車模型
this.truck3D = Laya.Sprite3D.load("LayaScene_truck/truck.lh");
//模型與材質(zhì)加載完成事件監(jiān)聽
this.truck3D.on(Laya.Event.HIERARCHY_LOADED,this,this.onLoded);
this.scene.addChild(this.truck3D);
//模型與材質(zhì)加載完成后回調(diào)
private onLoded():void
{ 
  console.log(this.truck3D);
  //獲取模型(查看.lh文件,有兩個子對象模型厂僧,一為車頭“head”扣草,一為車身“body”,暫取其中一個模型)
  var meshSprite3D:Laya.MeshSprite3D = this.truck3D.getChildAt(0).getChildAt(0) as Laya.MeshSprite3D;
  //輸出模型的名字(輸出“body”)
  console.log(meshSprite3D.name);
}
  • 加載建模后替換建模
//加載導(dǎo)出的卡車模型
this.truck3D = Laya.Sprite3D.load("LayaScene_truck/truck.lh");
this.scene.addChild(this.truck3D);
//模型與材質(zhì)加載完成事件監(jiān)聽
this.truck3D.on(Laya.Event.HIERARCHY_LOADED,this,this.onLoaded);
//模型與材質(zhì)加載完成后回調(diào)
private onLoaded():void
{ 
  console.log(this.truck3D);
  //獲取模型(查看.lh文件颜屠,有兩個子對象模型辰妙,一為車頭“head”,一為車身“body”汽纤,暫取其中一個模型)
  this.meshSprite3D = this.truck3D.getChildAt(0).getChildAt(0) as Laya.MeshSprite3D;
  //輸出模型的名字(輸出“body”)
  console.log(this.meshSprite3D.name);
  //2秒后更換模型網(wǎng)格
  Laya.timer.once(2000,this,this.onTimerOnce);
}
private onTimerOnce():void{
  //創(chuàng)建模型網(wǎng)格并更換原始網(wǎng)格
  this.meshSprite3D.meshFilter.sharedMesh = Laya.Mesh.load("LayaScene_truck/Assets/truck-head.lm");
  //因使用了卡車頭網(wǎng)格上岗,位置會沖個,所以進行位置移動
  this.meshSprite3D.transform.translate(new Laya.Vector3(0,0,-8));
}

材質(zhì) Material

  • 標(biāo)準(zhǔn)材質(zhì) standerd
//創(chuàng)建標(biāo)準(zhǔn)材質(zhì)
var material = new Laya.StandardMaterial();
//創(chuàng)建漫反射二維紋理貼圖
material.diffuseTexture = Laya.Texture2D.load("res/layabox.png");
//為box模型賦材質(zhì)
box.meshRender.material = material;

異步加載

//異步加載材質(zhì)文件創(chuàng)建標(biāo)準(zhǔn)材質(zhì)(也可以預(yù)加載)
var material = Laya.StandardMaterial.load("truck/Assets/Materials/t0200.lmat");
//為box模型賦材質(zhì)
box.meshRender.material = material;
  • 修改材質(zhì)
//加載導(dǎo)出的卡車模型
this.role3D = Laya.Sprite3D.load("LayaScene_truck/truck.lh");
//模型與材質(zhì)加載完成監(jiān)聽與回調(diào)
this.role3D.on(Laya.Event.HIERARCHY_LOADED,this,onLoadComplete);
this.scene.addChild(this.role3D);
//模型與材質(zhì)加載完成后回調(diào)
function onLoadComplete(){
  //獲取車身模型(查看.lh文件蕴坪,模型中兩個對象,車頭“head”與車身“body”敬锐,他們都用同一個材質(zhì))
  var meshSprite3D = this.role3D.getChildAt(0).getChildAt(0);
  //從模型上獲取自身材質(zhì)
  var material = meshSprite3D.meshRender.material;
  //修改材質(zhì)的反射顏色背传,讓模型偏紅
  material.albedo = new Laya.Vector4(1,0,1,1);
}
  • 修改共享材質(zhì)
//加載導(dǎo)出的卡車模型
this.role3D = Laya.Sprite3D.load("LayaScene_truck/truck.lh");
//模型與材質(zhì)加載完成監(jiān)聽與回調(diào)
this.role3D.on(Laya.Event.HIERARCHY_LOADED,this,onLoadComplete);
this.scene.addChild(this.role3D);
//模型與材質(zhì)加載完成后回調(diào)
function onLoadComplete(){
  //獲取車身模型(查看.lh文件,模型中兩個對象台夺,車頭“head”與車身“body”径玖,它們都用同一個材質(zhì))
  var meshSprite3D = this.role3D.getChildAt(0).getChildAt(0);
  //從模型上獲取共享材質(zhì)
  var shareMaterial = meshSprite3D.meshRender.shareMaterial;
  //修改材質(zhì)的反射顏色,讓模型偏紅
  shareMaterial.albedo = new Laya.Vector4(1,0,0,1);
}
  • 修改材質(zhì)列表
//加載場景
this.scene = Laya.Scene.load("LayaScene_01/loveScene.ls");
Laya.stage.addChild(this.scene);
//場景模型與材質(zhì)加載完成監(jiān)聽與回調(diào)
this.scene.on(Laya.Event.HIERARCHY_LOADED,this,function(){
  setModelMaterial(this.scene);
});
//修改模型材質(zhì)(場景或模型)
function setModelMaterial(model){
  //如果是模型網(wǎng)格顯示對象
  if(model instanceof Laya.MeshSprite3D){
    //獲取模型網(wǎng)格對象
    var meshSprite3D = model;
    //獲取材質(zhì)列表數(shù)組
    var materials = meshSprite3D.meshRender.materials;
    //對模型網(wǎng)格中的所有材質(zhì)進行修改
    for(var m = 0;m < materials.length;m++){
      //獲取共享材質(zhì)
      var mat = materials[m];
      //修改材質(zhì)反射顏色
      mat.albedo = new Laya.Vector4(0.5,0.5,1,1);
    }
  }
  //如果是蒙皮模型網(wǎng)格顯示對象
  if(model instanceof Laya.SkinnedMeshSprite3D){
    //獲取蒙皮模型網(wǎng)格顯示對象
    var skinnedMeshSprite3D = model;
    //獲取材質(zhì)列表數(shù)組
    var materials1 = skinnedMeshSprite3D.skinnedMeshRender.materials;
    //對蒙皮模型網(wǎng)格中的所有材質(zhì)進行修改
    for(var n = 0;n < materials1.length;n++){
      //獲取共享材質(zhì)
      var mat1 = materials1[n];
      //修改材質(zhì)反射顏色
      mat1.albedo = new Laya.Vector4(0.5,0.5,1,1);
    }
  }
  //遞歸方法獲取子對象
  for(var i = 0;i < model._childs.length;i++){
    setModelMaterial(model._childs[i]);
  }
}

材質(zhì)的光色與貼圖

  • 反射率 albedo

反射率的值是一個四維向量颤介,查看下列代碼梳星,向量中四個元素分別代表著紅、綠滚朵、藍冤灾、透明alpha。
透明alpha效果為百分比辕近,0為全透明韵吨,1為全透明,如果需要設(shè)置為半透明或全透明顯示移宅,只調(diào)整反射率還不行归粉,還需要設(shè)置材質(zhì)的渲染模式為混合類型才能達到目的

反射率albedo數(shù)值越高,反射貼圖效果越小漏峰,漫反射貼圖效果越強糠悼,可根據(jù)實際的模型材質(zhì)效果調(diào)節(jié),比如水面浅乔、鏡面倔喂、金屬面可調(diào)節(jié)不同的反射率達到需求。

//創(chuàng)建標(biāo)準(zhǔn)材質(zhì)
var material = new Laya.StandardMaterial();
//創(chuàng)建漫反射二維紋理貼圖
material.diffuseTexture = Laya.Texture2D.load("res/layabox.png");
//只有設(shè)置了渲染模式為透明混合類型才能達到透明效果
//設(shè)置材質(zhì)藍色染色及30%半透明
material.albedo=new Laya.Vector4(1,1,2,0.3);
//渲染模式(也可設(shè)置數(shù)值,5-13等為混合類型滴劲,可觀察其效果變化)
material.renderMode = Laya.StandardMaterial.RENDERMODE_DEPTHREAD_TRANSPARENTDOUBLEFACE;;
//為box模型賦材質(zhì)
box.meshRender.material = material;
  • 漫反射 diffuse
//添加方向光(燈光色會與材質(zhì)色融合攻晒,因此改燈光色為黑白灰色,且不能曝光過度)
var directionLight = scene.addChild(new Laya.DirectionLight());
//環(huán)境色
directionLight.ambientColor = new Laya.Vector3(0.5, 0.5, 0.5);
//高光 / 金屬色
directionLight.specularColor = new Laya.Vector3(0, 0, 0);
//漫反射色
directionLight.diffuseColor = new Laya.Vector3(1, 1, 1);
directionLight.direction = new Laya.Vector3(0.5, -1, 0);    
//創(chuàng)建標(biāo)準(zhǔn)材質(zhì)
var material = new Laya.StandardMaterial();
//創(chuàng)建漫反射顏色
material.diffuseColor=new Laya.Vector3(.5,.5,2);
//創(chuàng)建漫反射二維紋理貼圖
material.diffuseTexture = Laya.Texture2D.load("res/layabox.png");
//為box模型賦材質(zhì)
box.meshRender.material = material;
  • 高光 specular
//創(chuàng)建平行光 -------------------
var light = scene.addChild(new Laya.DirectionLight());
//修改燈光方向
light.direction = new Laya.Vector3(0.3, -1, 0);
//設(shè)置高光色為白色
light.specularColor = new Laya.Vector3(1,1,1);
//加載導(dǎo)出的卡車模型
this.role3D = Laya.Sprite3D.load("LayaScene_truck/truck.lh");
//模型與材質(zhì)加載完成事件監(jiān)聽
this.role3D.on(Laya.Event.HIERARCHY_LOADED,this,onLoadComplete);
scene.addChild(this.role3D);
this.scene.addChild(this.role3D);
/** 模型與材質(zhì)加載完成后回調(diào)***/        
function onLoadComplete()
{
  //獲取模型
  var meshSprite3D = this.role3D.getChildAt(0).getChildAt(0);
  //從模型上獲取共享材質(zhì)
  var sharedMaterial = meshSprite3D.meshRender.sharedMaterial;
  //修改材質(zhì)的高光顏色班挖,讓高光處偏紅
  sharedMaterial.specularColor = new Laya.Vector4(1,0,0,1);
  //加載高光貼圖(與漫反射一致鲁捏,也可單獨制作高光貼圖)
  sharedMaterial.specularTexture = sharedMaterial.diffuseTexture;
  //sharedMaterial.specularTexture = Laya.Texture2D.load("LayaScene_truck/Assets/texture/t0200.png");
}

-環(huán)境 ambient

//添加方向光(燈光色會與材質(zhì)色融合,因此改燈光色為黑白灰色萧芙,且不能曝光過度)
var directionLight = scene.addChild(new Laya.DirectionLight());
directionLight.ambientColor = new Laya.Vector3(0.5, 0.5, 0.5);
directionLight.specularColor = new Laya.Vector3(0, 0, 0);
directionLight.diffuseColor = new Laya.Vector3(1, 1, 1);
directionLight.direction = new Laya.Vector3(0.5, -1, 0);    
//創(chuàng)建標(biāo)準(zhǔn)材質(zhì)
var material = new Laya.StandardMaterial();
//創(chuàng)建漫反射二維紋理貼圖
material.diffuseTexture = Laya.Texture2D.load("res/layabox.png");
//設(shè)置環(huán)境色给梅,提亮模型
material.ambientColor =new Laya.Vector3(2,2,2);
//為box模型賦材質(zhì)
box.meshRender.material = material;

-反射 reflect

//添加方向光
var directionLight = scene.addChild(new Laya.DirectionLight());
directionLight.ambientColor = new Laya.Vector3(0.5, 0.5, 0.5);
directionLight.specularColor = new Laya.Vector3(0.5, 0.5, 0.5);//為球體增加高光
directionLight.diffuseColor = new Laya.Vector3(1, 1, 1);
directionLight.direction = new Laya.Vector3(0.5, -1, 0);    
//添加自定義模型
var sphere = scene.addChild(new Laya.MeshSprite3D(new Laya.SphereMesh()));
sphere.transform.rotate(new Laya.Vector3(0,45,0),false,false);
//創(chuàng)建標(biāo)準(zhǔn)材質(zhì)
var material = new Laya.StandardMaterial();
//創(chuàng)建漫反射二維紋理貼圖
material.diffuseTexture = Laya.Texture2D.load("res/layabox.png");
//降低反射率,加強反射貼圖反射
material.albedo = new Laya.Vector4(0.2,0.2,0.2,0);
//設(shè)置渲染模式為雙面不透明(否者無法顯示反射貼圖)
material.renderMode = Laya.StandardMaterial.RENDERMODE_OPAQUEDOUBLEFACE;
//創(chuàng)建反射貼圖双揪,用立方體全視角貼圖進行賦值(類似于360全景包裹)
material.reflectTexture = Laya.TextureCube.load("skyBox/skyCube.ltc");
//為球型模型賦材質(zhì)
sphere.meshRender.material = material;
  • 法線凹凸貼圖

法線貼圖對模型數(shù)據(jù)有一定的要求动羽,如果模型上沒有切線信息將無法產(chǎn)生法線凹凸的效果。例如LayaAir 3D引擎中自帶的各種Mesh網(wǎng)格類型BoxMesh渔期、SphereMesh运吓、CylinderMesh等是沒有切線信息的,即使使用了法線貼圖也不會在視圖中顯示出凹凸疯趟。

如果需要使用法線貼圖拘哨,且模型是通過LayaAir的unity插件中導(dǎo)出,在Mesh Setting網(wǎng)格設(shè)置時需要注意不能勾選“忽略切線”選項

如果需要使用法線貼圖信峻,游戲場景中必須使用燈光倦青,否則模型上也不會產(chǎn)生凹凸效果

//添加方向光
var directionLight = scene.addChild(new Laya.DirectionLight());
directionLight.ambientColor = new Laya.Vector3(0.5, 0.5, 0.5);
directionLight.specularColor = new Laya.Vector3(0.5, 0.5, 0.5);//為球體增加高光
directionLight.diffuseColor = new Laya.Vector3(1, 1, 1);
directionLight.direction = new Laya.Vector3(0.5, -1, 0);    
//創(chuàng)建unity中導(dǎo)出的模型
this.box = Laya.Sprite3D.load("layaScene_box/box.lh");
//模型與材質(zhì)加載完成事件監(jiān)聽
box.on(Laya.Event.HIERARCHY_LOADED,this,onLoadComplete);
//也可以代碼加載法線貼圖
//加載到場景中
scene.addChild(this.box);
/** 模型與材質(zhì)加載完成后回調(diào)***/        
function onLoadComplete()
{
  //也可以代碼加載法線貼圖
  //從模型中獲取meshSprite3D對像
  //var meshSprite3D = this.box.getChildAt(0);
  //獲取模型的材質(zhì)實例
  //var material = meshSprite3D.meshRender.material;
  //為材質(zhì)添加法線貼圖
  //material.normalTexture = Laya.Texture2D.load("layaScene_box/Assets/texture/layabox_normal.png");
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市盹舞,隨后出現(xiàn)的幾起案子产镐,更是在濱河造成了極大的恐慌,老刑警劉巖踢步,帶你破解...
    沈念sama閱讀 212,454評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件癣亚,死亡現(xiàn)場離奇詭異,居然都是意外死亡贾虽,警方通過查閱死者的電腦和手機逃糟,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蓬豁,“玉大人绰咽,你說我怎么就攤上這事〉胤啵” “怎么了取募?”我有些...
    開封第一講書人閱讀 157,921評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長蟆技。 經(jīng)常有香客問我玩敏,道長斗忌,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,648評論 1 284
  • 正文 為了忘掉前任旺聚,我火速辦了婚禮织阳,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘砰粹。我一直安慰自己唧躲,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,770評論 6 386
  • 文/花漫 我一把揭開白布碱璃。 她就那樣靜靜地躺著弄痹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪嵌器。 梳的紋絲不亂的頭發(fā)上肛真,一...
    開封第一講書人閱讀 49,950評論 1 291
  • 那天,我揣著相機與錄音爽航,去河邊找鬼蚓让。 笑死,一個胖子當(dāng)著我的面吹牛岳掐,可吹牛的內(nèi)容都是我干的凭疮。 我是一名探鬼主播,決...
    沈念sama閱讀 39,090評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼串述,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了寞肖?” 一聲冷哼從身側(cè)響起纲酗,我...
    開封第一講書人閱讀 37,817評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎新蟆,沒想到半個月后觅赊,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡琼稻,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,592評論 2 327
  • 正文 我和宋清朗相戀三年吮螺,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片帕翻。...
    茶點故事閱讀 38,724評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡鸠补,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出嘀掸,到底是詐尸還是另有隱情紫岩,我是刑警寧澤,帶...
    沈念sama閱讀 34,409評論 4 333
  • 正文 年R本政府宣布睬塌,位于F島的核電站泉蝌,受9級特大地震影響歇万,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜勋陪,卻給世界環(huán)境...
    茶點故事閱讀 40,052評論 3 316
  • 文/蒙蒙 一贪磺、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧诅愚,春花似錦寒锚、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,815評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至等浊,卻和暖如春腮郊,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背筹燕。 一陣腳步聲響...
    開封第一講書人閱讀 32,043評論 1 266
  • 我被黑心中介騙來泰國打工轧飞, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人撒踪。 一個月前我還...
    沈念sama閱讀 46,503評論 2 361
  • 正文 我出身青樓过咬,卻偏偏與公主長得像,于是被迫代替她去往敵國和親制妄。 傳聞我的和親對象是個殘疾皇子掸绞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,627評論 2 350

推薦閱讀更多精彩內(nèi)容

  • 111. [動畫系統(tǒng)]如何將其他類型的動畫轉(zhuǎn)換成關(guān)鍵幀動畫? 動畫->點緩存->關(guān)鍵幀 112. [動畫]Unit...
    胤醚貔貅閱讀 12,982評論 3 90
  • 我們都知道耕捞,一個三維場景的畫面的好壞衔掸,百分之四十取決于模型,百分之六十取決于貼圖俺抽,可見貼圖在畫面中所占的重要性敞映。在...
    自由的天空閱讀 12,374評論 0 12
  • 更新:【面試題含答案】http://bbs.9ria.com/thread-288394-1-1.html 高頻問...
    好怕怕閱讀 4,728評論 3 52
  • 在新一階段的寫作中振愿,我寫下了這三個目標(biāo):思考、踐行弛饭、改變冕末。 都說輸出倒逼輸入,寫作的過程中孩哑,必然需要閱讀栓霜、聽書或?qū)W...
    ef0b06719d1c閱讀 231評論 0 3
  • 一瞬而逝的煙火 像大海中的水滴 在星空璀璨的銀河 可是它盛開時 卻綻放絢麗的花 高唱嘹亮的歌
    說劍師閱讀 420評論 0 4