mirror of
https://github.com/LukeHagar/unicorn-utterances.git
synced 2025-12-09 12:57:45 +00:00
Fix subitems in unity post
This commit is contained in:
@@ -163,9 +163,9 @@ withInstance.request(handleOnFinished);
|
|||||||
You can see that we have a few steps here:
|
You can see that we have a few steps here:
|
||||||
|
|
||||||
1) Make a new `Callback` instance
|
1) Make a new `Callback` instance
|
||||||
1a) Provide an implementation of `onFinished` for said instance
|
- Provide an implementation of `onFinished` for said instance
|
||||||
2) Call `DeviceName.with` to create a request we can use later
|
2) Call `DeviceName.with` to create a request we can use later
|
||||||
2a) This means that we have to gain access to the currently running context to gain device access. When calling the code from Unity, it means we have to get access to the `UnityPlayer` context that Unity engine runs on
|
- This means that we have to gain access to the currently running context to gain device access. When calling the code from Unity, it means we have to get access to the `UnityPlayer` context that Unity engine runs on
|
||||||
3) Call that request's `request` method with the `Callback` instance
|
3) Call that request's `request` method with the `Callback` instance
|
||||||
|
|
||||||
For each of these steps, we need to have a mapping from the Java code to C# code. Let's walk through these steps one-by-one
|
For each of these steps, we need to have a mapping from the Java code to C# code. Let's walk through these steps one-by-one
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
$mobileImgSize: 150px;
|
$mobileImgSize: 150px;
|
||||||
max-width: $mobileImgSize;
|
max-width: $mobileImgSize;
|
||||||
max-height: $mobileImgSize;
|
max-height: $mobileImgSize;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
|||||||
@@ -268,6 +268,10 @@ svg:not(.strokeicon) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
li > ul > li {
|
||||||
|
margin: 1rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
// The pagination styling
|
// The pagination styling
|
||||||
.pagination {
|
.pagination {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|||||||
Reference in New Issue
Block a user