Lumberyard Beta 1.12 下载地址

[复制链接]
查看6851 | 回复12 | 2017-12-15 16:17:28 | 显示全部楼层 |阅读模式
本帖最后由 风声 于 2017-12-28 12:07 编辑

百度网盘下载地址
链接: https://pan.baidu.com/s/1kVEdiKn 密码: 2aez


官方下载地址:
https://d1a5h15s88ekwk.cloudfront.net/1.12.0.0/lumberyard-1.12-526767a-pc.zip
https://dhvs6pbgc0r1n.cloudfront.net/1.12.0.0/lumberyard-1.12-526767-pc-vrproject.zip
https://d1nwo8xtqsfuln.cloudfront.net/1.12.0.0/lumberyard-1.12-526767-mac.tgz
https://df0vy3vd107il.cloudfront.net/1.12.0.0/lumberyard-1.12-515373-common-ThirdParty.zip
https://df0vy3vd107il.cloudfront.net/1.12.0.0/lumberyard-1.12-515373-vc120-ThirdParty.zip
https://df0vy3vd107il.cloudfront.net/1.12.0.0/lumberyard-1.12-515373-vc140-ThirdParty.zip
https://df0vy3vd107il.cloudfront.net/1.12.0.0/lumberyard-1.12-515373-winlinux-ThirdParty.zip
                                            
                Lumberyard Beta 1.12 adds over 400 new features, improvements, and fixes. As we continue to improve Lumberyard, we want to thank everyone in our community, whose suggestions help us make a better product every release. Since the initial launch, we've overhauled over 50% of the original code base, and we're still just getting started. Keep sending feedback to our forums as well as lumberyard-feedback@amazon.com. For the latest Lumberyard updates, follow us on Twitter, Facebook, and our blog.
Topics
HighlightsHere's a sampling of the new features found in Lumberyard 1.12.
Topics
Use the Fur Shader to Create Short-Medium Length FurWith the Fur shader you can create real-time rendering of short to medium length fur. You can apply this shader to any mesh and define where fur appears, the length of the fur, how it clumps together, and how nonuniform strands appear across a mesh. You can also use the following features:
  • Anisotropic specular highlights – Highlights appear banded perpendicular to the direction of the fur strands.
  • Subsurface scattering – Subsurface scattering appears on the silhouette edges of the fur, creating a glow effect when the fur is backlit.

New Components for the Component Entity SystemLumberyard 1.12 adds the following components:
  • Fog Volume – Use this component to define ellipsoid or cuboid volumes of localized fog.
  • Geometry Cache – Use this component to load Alembic files and script them in your level. This feature is commonly used to create high fidelity geometry animation effects, such as destruction and natural effects.
  • Lightning – Enable the Lightning gem and use the Lightning component to create individual lightning strikes. You can use this component with the Random Timed Spawner component to create lightning storms.
  • Lightning Arc – Enable the Lightning gem and use the Lightning Arc component to create arcing energy effects that use targets.
  • Polygon Prism – Use this component to define an arbitrarily shaped polygonal volume. You can use this component with the Water Volume component to define irregular areas such as ponds and lakes.
  • Rain – Enable the Rain gem and use the Rain component to create falling rain, wet surfaces, and wet ground effects.
  • Snow – Enable the Snow gem and use the Snow component to create falling snow and freezing ground effects.
  • Spline – Use this component to author lines and/or curves in the editor.
For more information, see the Component Reference in the Amazon Lumberyard User Guide.
Use the Water Gem to Create Bodies of WaterThe Water gem includes the following components:
  • Infinite Ocean – Use this component to add or remove a single, infinitely large ocean in your level.
  • Water Volume – Use this component to add multiple, arbitrarily shaped bodies of water in your level.
The Water gem disables the legacy ocean, so you must add the Infinite Ocean component for an ocean to appear in your level.
For more information, see the Component Reference in the Amazon Lumberyard User Guide.
Use the Visibility Gem to Create Indoor AreasThe Visibility gem includes the following components:
  • Occluder Area – Use this component to create a custom-shaped occlusion plane with four vertices. This component also prevents the engine from rendering everything behind the occluder area, which can help optimize performance in areas where automatic occlusion doesn't work well.
  • VisArea – Use this component to manage visibility and culling. This allows a camera to see only objects within the visible area. The VisArea component is commonly used for indoor areas. You can use this component with the Portalcomponent to create windows between the visible areas, and create areas that are efficient to render.
  • Portal – Use this component with the VisArea component to create efficient indoor areas. Portals act like windows or doors between visible areas.
For more information, see the Component Reference in the Amazon Lumberyard User Guide.
New Script Canvas FeaturesWith Script Canvas you can script game logic and behaviors using the component entity system. Script Canvas offers an approachable and easy-to-read environment to author behaviors that use the same framework as Lua and C++. Script Canvas is built to take advantage of the modularity, performance, and flexibility of the component entity system. Lumberyard 1.12 adds the following Script Canvas features:
  • Block commenting – Use block comments to group parts of your graph and tag and/or color code the grouping.
  • Library of math nodes – New math nodes have improved functionality and are easier to use. The math primitives are handled by value and most math operations are handled natively.
For more information, see Script Canvas in the Amazon Lumberyard User Guide.
New Cloud Canvas FeaturesLumberyard 1.12 introduces the following Cloud Canvas features:
Speech Recognition Cloud Gem
You can use the Speech Recognition Cloud Gem to add speech recognition and natural language processing to your Lumberyard game. The Speech Recognition Cloud Gem uses the Amazon Lex service, which recognizes the intent of spoken user input so that your game can react accordingly. Your users can use natural language and do not need to memorize or use specific phrases to initiate commands. Lumberyard 1.12 adds a full set of tools and a workflow that let you create, edit, and manage Lex conversational bots and intents in the Cloud Gem Portal. For more information, see Speech Recognition Cloud Gem Preview in the Amazon Lumberyard Developer Guide.
Text-to-Speech Cloud Gem
You can use the Text-to-Speech Cloud Gem to enhance your gameplay and workflows with synthesized speech. The Text-to-Speech Cloud Gem uses Amazon Polly, which is a text-to-speech service that turns text into lifelike speech. Amazon Polly offers dozens of lifelike voices in a variety of languages. The service also creates lip synchronization from the text that you provide. You can use the Animation Editor to implement animated lip synchronization. For more information, see Text to Speech Cloud Gem (Using Amazon Polly) in the Amazon Lumberyard Developer Guide.
Enable Carrier ACK FeedbackIn the default GridMate implementation, a change in a dataset causes four unreliable updates and then one reliable update to be sent. This technique can result in many reliable packets on the network. Because reliable packets require ordering, preceding packets cannot be processed until a lost packet is successfully retransmitted. The resulting delay can cause jitter. To avoid this issue, you can enable carrier ACK feedback.
When carrier ACK feedback is enabled, a changed dataset propagates its update unreliably until the receiver sends an ACK to acknowledge that it received the update. Additionally, if a dataset update is acknowledged as received before the grace period specified by MaxIdleTime, GridMate saves bandwidth by not sending additional unneeded updates.
For more information, see Carrier ACK Feedback in the Amazon Lumberyard Developer Guide.
New UI Editor FeaturesLumberyard 1.12 introduces the following UI Editor features:
  • Sprite sheets and flipbook animations – Use a sprite index to include multiple images in a texture file and reference that file from the UI Image component. You can then use a flipbook animation to animate the image by flipping from one sprite to another.
  • Image fill types – The UI Image component supports fill types, so you can fill an image linearly or radially. You can use this for bars and dials in the UI.
  • Script-driven animation – With the Scripted Entity Tweener gem, you can use Lua to animate virtual properties on component entities. This allows animation script components to reside within a slice and provides more dynamically controlled animations.
  • Tabbed canvas editing – The UI Editor supports tabs, so you can edit multiple UI canvases and copy and paste between the UI canvases.
For more information, see the UI Editor in the Amazon Lumberyard User Guide.
Use the Audio Preload Component for ATL PreloadsWith the Audio Preload component, you can load and unload soundbank data (contained in ATL preloads) through component entities. You can specify the loading type:
  • Automatic – ATL preloads automatically load when the component activates and unload when the component deactivates.
  • Manual – ATL preloads load and unload only if requests are sent to the interface.
For more information, see the Component Reference in the Amazon Lumberyard User Guide.
Create External Game Project DirectoriesLumberyard 1.12 adds support for creating your game project directory outside of the Lumberyard engine directory. This approach makes it easier to work with multiple game projects and to upgrade the engine version for your game project.
Use the Lmbr.exe command line tool (located in the /dev/Tools/LmbrSetup/Win directory) to create the external game project directory and manage the gems for your game project.
To create the external game project directory, type lmbr.exe projects create <em><code>[name] -target-folder [target path] -template [template]
Where [name] is the name of the game project, [target path] is the location of the project directory, [template] is the template to optionally use for your game project. If you do not specify a value for [template], EmptyTemplate is used by default.
For example, to create a game called MyGame that is based on DefaultTemplate in the C:\projects\MyGame directory, type the following: lmbr.exe projects create MyGame -target-folder c:\projects\MyGame -template DefaultTemplate
New Amazon GameLift FeaturesStay up to date with the latest release information at AWS Release Notes for Amazon GameLift.
SDK CompatibilityLumberyard 1.12 is compatible with the following SDK versions:
  • AWS SDK for C++ version 1.1.13
  • Amazon GameLift Server SDK version 3.1.5
               




Someday | 2017-12-27 14:50:06 | 显示全部楼层
来份百度网盘才好!
回复 支持 反对

使用道具 举报

shadowwp | 2018-1-10 17:45:10 | 显示全部楼层
感谢分享,看看
回复 支持 反对

使用道具 举报

stingning | 2018-1-17 16:23:57 | 显示全部楼层
感谢分享 !!!!!
回复

使用道具 举报

leftfox | 2018-1-19 10:35:25 | 显示全部楼层
试试这个引擎如何
回复 支持 反对

使用道具 举报

cuidaniu | 2018-2-11 16:54:19 | 显示全部楼层
太感谢了,超级喜欢啊
回复 支持 反对

使用道具 举报

18980442756 | 2018-2-22 21:48:21 | 显示全部楼层
4444455555555
回复 支持 反对

使用道具 举报

隔壁老雷 | 2018-2-25 21:07:56 | 显示全部楼层
1111111111111111111111111111
回复 支持 反对

使用道具 举报

Saberml | 2018-3-1 19:11:00 | 显示全部楼层
好东西,支持
回复 支持 反对

使用道具 举报

frankzcy | 2018-6-7 10:05:03 | 显示全部楼层
非常好的素材非常好的素材非常好的素材非常好的素材
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

18

主题

14

回帖

1724

积分

中阶编码师

积分
1724

见习勋章荣耀管理勋章卓越勋章