Skip to content

Commit

Permalink
Release TDEngine2-v0.5
Browse files Browse the repository at this point in the history
- An implementation of basic material functionality was introduced
tde2_resource_packer, TDE2FontEd, TDE2AnimationEd

- Scene manager with support of sync/async scene loading was added

- A few types of textures (2D / Cubemap) were supported

- Off-screen rendering support was also provided via RenderBuffer /
DepthBuffer resources

- Basic functionality of save manager was added

- Support of UI system with flexible layout was implemented

- Particles with their own editor TDE2ParticlesEd

- 2D/3D physics

- Audio system based on FMOD library

- Post-processing camera stack

- Localization manager with corresponding resource to store locales data

- first iteration of 3D animation system

- Support of skinned meshes
  • Loading branch information
bnoazx005 committed Sep 29, 2021
1 parent dcbbf14 commit 93ebfec
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image: Visual Studio 2017

version: '0.4.{build}'
version: '0.5.{build}'

configuration:
- Debug
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: |
echo github.event.action: ${{ github.event.action }}
echo github.event_name: ${{ github.event_name }}
echo github.ref ${{github.ref}}
- name: Install dependencies on windows
if: startsWith(matrix.config.os, 'windows')
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
${{ matrix.config.archiver }} ${{ matrix.config.artifact }} bin/${{ matrix.config.build_type }}/ Resources/ README.md LICENSE CHANGELOG.md TDEngine2/
- name: Deploy
if: github.ref == 'refs/heads/master' && github.event.action == 'push'
if: contains( ${{ github.head_ref }}, 'master' )
id: create_release
uses: actions/create-release@v1
env:
Expand All @@ -108,13 +108,13 @@ jobs:
draft: false
prerelease: false

# - name: Upload release asset
# if: github.event_name == 'release' && (github.event.action == 'published' || github.event.action == 'created')
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ github.event.release.upload_url }}
# asset_path: ./${{ matrix.config.artifact }}
# asset_name: ${{ matrix.config.artifact }}.zip
# asset_content_type: application/zip
- name: Upload Archive
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./${{ matrix.config.artifact }}
asset_name: ${{ matrix.config.artifact }}
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ before_deploy:

deploy:
provider: releases
name: TDEngine2_SDK-v0.4-linux
name: TDEngine2_SDK-v0.5-linux
api_key:
secure: Nw5dmR6F5NC1FVhZQunHOpppjLtNjdgezW0baCJLW1mXvtvWUo9rX+eMCKNk+e02h2VQuxRyfiUe31DW3CbhO5rKNl8Aq31Zobnp9+zGTHVD+Iyz584hK2/zpqOLcHXru+BqYh2VGX1yW0Hv0EExj8zNfI6JSfqI7hHGRPcHnUfSEy6CMO56W0pLbet+EFZUpghSbsG61NCvmG0HTDItox8GsVSQcTfRij0/ckfvgOK10qv0agK2Oar9wQSFMG30Td7lM3oBV4OfBdB4y6eK5TVNPld4rzqFgc0yLdF0Nh581/WoD9kvMBzh0vte+mpEipeFmxGcgDZUcrmVvKGmAX2960z7Ujs/BYVLlgM9aNzQVoHApn0PyAm7qCdOdijE8OIwiVB1i2xz2P0oUQaxOsLTKVUcJ467OpkraxLOmn9nhfehm0H5BaVJLR0ACtZq474d54Je8bvO1TyEUAL2HvY2zVodw5mWwJLbKpDKB6ceSkFyTAWsB2bUIi1xjzkQQ5cCCjyFgrtxvo4KwddQx2NGD3Q/Q/eNGUDS5h1vlJt1CGkFHYp8Dyweae3YIHv+Y9lN4njh9gAnT3kzxhsIjTI14ynUFoe3Bcx2tXr+e8eeWOVFj4SBKJIQl00RdO4RLi/mC3gldrriRH5k9XdppmEejahZAkS1uGkLVPy3Y2I=

Expand Down

0 comments on commit 93ebfec

Please sign in to comment.