arkutils
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    --- tags: Parsing --- # UAsset Schema - KaitaiStruct [kaitai.io](https://kaitai.io/) ``` yaml meta: id: uasset title: Unreal Engine Asset file-extension: uasset application: Unreal Engine endian: le seq: - id: tag type: u4 - id: legacy_ver type: s4 - id: ue_ver type: s4 - id: file_ver type: u4 - id: licensee_ver type: u4 - id: custom_versions type: custom_version_table - id: header_size type: u4 - id: package_group type: encoded_string - id: package_flags type: u4 - id: names_chunk type: chunk_pointer - id: exports_chunk type: chunk_pointer - id: imports_chunk type: chunk_pointer - id: depends_offset type: u4 - id: string_assets type: chunk_pointer - id: thumbnail_offset type: u4 - id: guid size: 16 - id: generations type: generation_info_table - id: engine_version_saved type: engine_version - id: compression_flags type: u4 - id: compressed_chunks type: compressed_chunk_table - id: package_source type: u4 - type: u8 #unknown_field, This field isn't present in some older ARK mods if: licensee_ver >= 10 - id: packages_to_cook type: string_table - type: s4 #texture_allocations, Legacy field that is not used anymore if: legacy_ver > -7 - id: asset_registry_data_offset type: u4 - id: bulk_data_start_offset type: u8 - id: world_tile_info_data_offset type: u8 instances: names: pos: names_chunk.offset type: encoded_string repeat: expr repeat-expr: names_chunk.count imports: pos: imports_chunk.offset type: import_table_item repeat: expr repeat-expr: imports_chunk.count exports: pos: exports_chunk.offset type: export_table_item repeat: expr repeat-expr: exports_chunk.count tile_info: pos: world_tile_info_data_offset type: world_tile_info if: (world_tile_info_data_offset != 0) none_name: value: package_group.value types: custom_version_table: seq: - id: count type: u4 - id: items type: custom_version repeat: expr repeat-expr: count custom_version: seq: - id: guid size: 16 - id: version type: u4 - id: friendly_name type: encoded_string generation_info_table: seq: - id: count type: u4 - id: items type: generation_info repeat: expr repeat-expr: count generation_info: seq: - id: export_count type: u4 - id: name_count type: u4 compressed_chunk_table: seq: - id: count type: u4 - id: items type: compressed_chunk repeat: expr repeat-expr: count compressed_chunk: seq: - id: uncompressed_offset type: u4 - id: uncompressed_size type: u4 - id: compressed_offset type: u4 - id: compressed_size type: u4 string_table: seq: - id: count type: u4 - id: items type: encoded_string repeat: expr repeat-expr: count engine_version: seq: - id: major type: u2 - id: minor type: u2 - id: patch type: u2 - id: changelist type: u4 - id: branch type: encoded_string encoded_string: seq: - id: length type: s4 - id: narrow type: strz size: length encoding: utf8 if: length >= 0 - id: wide type: strz size: length * -2 encoding: utf16 if: length < 0 instances: value: value: 'length < 0 ? wide.substring(0, -length - 1) : narrow.substring(0, length - 1)' chunk_pointer: seq: - id: count type: u4 - id: offset type: u4 name_index: seq: - id: index type: u4 - id: instance type: u4 instances: value: value: _root.names[index].value object_index: seq: - id: raw_value type: s4 instances: kind: value: 'raw_value == 0 ? "none" : raw_value < 0 ? "import" : "export"' index: value: 'raw_value < 0 ? -raw_value - 1 : raw_value - 1' if: raw_value != 0 value: value: 'raw_value < 0 ? _root.imports[index] : _root.exports[index]' if: raw_value != 0 import_table_item: seq: - id: package type: name_index - id: class type: name_index - id: namespace type: object_index - id: name type: name_index export_table_item: seq: - id: class type: s4 - id: super type: s4 - id: namespace type: s4 - id: name type: name_index - id: object_flags type: u4 - id: serial_size type: u4 - id: serial_offset type: u4 - id: force_export type: u4 - id: not_for_client type: u4 - id: not_for_server type: u4 - id: guid size: 16 - id: package_flags type: u4 - id: not_for_editor_game type: u4 instances: properties: pos: serial_offset #size: serial_size type: property repeat: until #repeat-expr: 1 repeat-until: _.has_value == false or _index == 2 property: seq: - id: name type: name_index - id: type type: name_index if: has_value - id: size type: u4 if: has_value - id: index type: u4 if: has_value - id: value if: has_value size: size type: switch-on: type.value cases: '"ObjectProperty"': object_index '"NameProperty"': name_index '"FloatProperty"': f4 '"DoubleProperty"': f8 '"BoolProperty"': u1 '"ByteProperty"': u1 '"IntProperty"': s4 '"UInt32Property"': u4 '"StrProperty"': encoded_string '"StringProperty"': encoded_string '"TextProperty"': text_property '"StringAssetReference"': encoded_string '"AssetObjectProperty"': encoded_string '"StructProperty"': encoded_string '"ArrayProperty"': encoded_string '"Guid"': guid '"Vector"': vector '"Vector2D"': vector_2d '"Rotator"': rotator '"Quat"': quat '"Color"': u4 '"LinearColor"': linear_color '"Box"': box '"IntPoint"': encoded_string _: unknown_property instances: has_value: value: name.value != _root.none_name text_property: seq: - id: flags type: u4 - id: history_type type: s1 - id: namespace type: encoded_string - id: key type: encoded_string - id: source_string type: encoded_string unknown_property: instances: value: value: ("<unsupported type " + _parent.type.value + ">") world_tile_info: seq: - type: u8 #unknown_field - id: bounds type: box - id: layer_name type: encoded_string - type: u4 #unknown_field - type: u4 #unknown_field - type: u4 #unknown_field - id: streaming_distance type: s4 - id: distance_streaming_enabled type: u2 box: seq: - id: min type: vector - id: max type: vector - id: is_valid type: u2 vector: seq: - id: 'x' size: 4 - id: 'y' size: 4 - id: 'z' size: 4 vector_2d: seq: - id: 'x' size: 4 - id: 'y' size: 4 int_point: seq: - id: 'x' type: s4 - id: 'y' type: s4 rotator: seq: - id: 'a' size: 4 - id: 'b' size: 4 - id: 'c' size: 4 quat: seq: - id: 'w' size: 4 - id: 'x' size: 4 - id: 'y' size: 4 - id: 'z' size: 4 guid: seq: - id: bytes size: 16 linear_color: seq: - id: 'r' size: 4 - id: 'g' size: 4 - id: 'b' size: 4 - id: 'a' size: 4 struct_property: params: - id: inside_array type: bool seq: - id: name type: name_index - id: value if: has_value type: switch-on: name.value cases: '"ObjectProperty"': object_index '"NameProperty"': name_index '"FloatProperty"': f4 '"DoubleProperty"': f8 '"BoolProperty"': u1 '"ByteProperty"': u1 '"IntProperty"': s4 '"UInt32Property"': u4 '"StrProperty"': encoded_string '"StringProperty"': encoded_string '"TextProperty"': text_property '"StringAssetReference"': encoded_string '"AssetObjectProperty"': encoded_string '"StructProperty"': encoded_string '"ArrayProperty"': encoded_string '"Guid"': guid '"Vector"': vector '"Vector2D"': vector_2d '"Rotator"': rotator '"Quat"': quat '"Color"': u4 '"LinearColor"': linear_color '"Box"': box '"IntPoint"': encoded_string _: unknown_property instances: has_value: value: name.value != _root.none_name ```

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully