Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Question Using Addressable assets to update string table without rebuilding whole project

Discussion in 'Addressables' started by jyjy3, Jan 18, 2023.

  1. jyjy3

    jyjy3

    Joined:
    Jul 6, 2022
    Posts:
    10
    I am trying to use my string table(for localization) managed by addressables, locate assets at my AWS S3 and update the string table by rebuilding only the addressable assets not the windows or mobile targeted program.
    However when I run my exe file it seems like it has string table inside itself, not loading from remote. And if I run at editor it loads string table from remote.

    I set play mode script to use existing build, first built addressables using default build script, built windows target exe file, made change at string table and built addressables using Update a previous build. In this case running at editor showed updated texts. But running exe file did not show updated texts so I am assuming my exe file loads localized texts inside itself.

    At the String Tables document it says its editor only asset, does that mean I cannot update it by only rebuilding my addressables?