Skip to content

Commit

Permalink
Add docs about new features
Browse files Browse the repository at this point in the history
  • Loading branch information
mafiesto4 committed May 16, 2024
1 parent ce09a21 commit 971e1a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions manual/platforms/android.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ See *Android Platform Settings* asset.
| Property | Description |
|--------|--------|
| **Package Name** | The application package name (eg. `com.company.product`). Custom tokens: `${PROJECT_NAME}`, `${COMPANY_NAME}`. |
| **Version Code** | The application version code (eg. 1, 12, 123). |
| **Minimum API Level** | The minimum Android API level (eg. 20, 28, 34). |
| **Target API Level** | The target Android API level (eg. 20, 28, 34). |
| **Permissions** | The application permissions list (eg. `android.media.action.IMAGE_CAPTURE`). Added to the generated manifest file. |
| **Default Orientation** | The default screen orientation. |
| **Textures Quality** | The output textures quality (compression). |
Expand Down
1 change: 1 addition & 0 deletions manual/scripting/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ The following table lists the most common attributes with usage description.
| **DefaultValue** | Can be used to specify the default value for the field or the property. The editor will highlight the modified properties and add an option to restore value to default. You can use it on basic types like: `[DefaultValue(3.14f)] public float MyValue;` or on complex types: `[DefaultValue(typeof(Vector2), "1,2")] public Vector2 StartPosition;`. |
| **ReadOnly** | Properties and fields marked with this attribute won't be editable in the inspector. This allows to show object proeprties values in the editor but without option to modify the value which can be handy in some cases. |
| **Category** | Describes the category name for a type. Can be used to group script, asset or actor types for editor pickers to organize types. |
| **Watermark** | Adds a watermark to a string textbox in the editor field. |
## Script execution in editor
Expand Down

0 comments on commit 971e1a5

Please sign in to comment.