There is an Action in triggers that allow you to enable Cinematic Mode which disables mouse inputs and hides UI. It is called Toggle Cinematic Mode, I think, something with Cinematic Mode in its name.
- unclegranddaddy
- Registered User
-
Member for 1 year and 10 months
Last active Fri, Feb, 17 2023 10:56:27
- 0 Followers
- 28 Total Posts
- 0 Thanks
- To post a comment, please login or register a new account.
-
Feb 13, 2023ZerakimTwitch posted a message on [SOLVED]disable all mouse options while showing camera scene then turn enable afterPosted in: Triggers
-
0.956173475225998
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataNice work !
I think the "When" tag compares the string in the Text attribute as it is than retrieve the value of a reference beforehand.
Because I already did a label with Text attribute using a reference and worked as expected.
With the property binding brackets "{" && "}", it retrieves the reference's value.
<When type="Property" frame="NameLabel" Text="{@Unit/Name/DTRCommandCenter}"/>
What a trick to create a dummy frame to stock values. Might be useful.
About the Alpha, you obliterate the fading animation with :
[...] <FadeTime val="0"/> [...] <Action type="SetProperty" frame="$layer/CommandTooltip" Alpha="255"/> [...]
But yeah, that's a good workaround if not very concerned about !
Lastly, I discover the "$layer" frame referencing.
Does this reference what's on the current XML sheet / layout (which is extremely useful, headache savior to find frames) ?
-
0.956193526249571
prodigy_454 posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.To fix the mouse hover still appearing you need to catch when the tooltip frame becomes visible.
Also Text fields don't accept text keys. Either use a exact string match w/ escaped xml or property bind. Tooltip fields can use text keys (see below). This also allows for localization to be used as well.
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <Desc> <Frame type="CommandPanel" name="GameUI/UIContainer/ConsoleUIContainer/CommandPanel" file="GameUI"> <Frame type="CommandTooltip" name="CommandTooltip"> <FadeTime val="0"/> </Frame> </Frame> <Frame type="InfoPanel" name="GameUI/UIContainer/ConsoleUIContainer/InfoPanel" file="GameUI"> <Frame type="InfoPaneUnit" name="InfoPaneUnit"> <Frame type="Frame" name="CacheTooltip"> <Anchor side="Top" relative="$parent" pos="Min" offset="0"/> <Anchor side="Left" relative="$parent" pos="Min" offset="0"/> <Visible val="False"/> <Tooltip val="@Unit/Name/CommandCenter"/> </Frame> <StateGroup name="NameState"> <DefaultState val="UnitNameOff"/> <State name="UnitNameOn"> <When type="Property" frame="NameLabel" Text="{CacheToolip/@Tooltip}"/> <When type="Property" frame="$GameUI_CommandPanel/CommandButton00/NormalImage" Texture="Assets\Textures\btn-unit-terran-scv.dds"/> <When type="Property" frame="$GameUI_CommandPanel/CommandButton00" Hovering="True"/> <When type="Property" frame="$layer/CommandTooltip" Visible="True"/> <Action type="SetProperty" frame="$layer/CommandTooltip" Alpha="0"/> </State> <State name="UnitNameOff"> <Action type="SetProperty" frame="$layer/CommandTooltip" Alpha="255"/> </State> </StateGroup> </Frame> </Frame> </Desc>
-
0.95618350303169
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataOMG (deserves the highlight) you made me discover we can override UIs, that's so powerful !
That opens so much more possibilities !
So I tried and modified the previous XML to hide the tooltip like previously but :
- It depends on the Unit's name in the info panel (also called unit status) "InfoPanel".
- New StateGroup for the info panel of the unit (child of the info panel) "InfoPaneUnit".
Note : However, this inherits an odd behavior, the tooltip shows up when you play around with the mouse.
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <Desc> <Frame type="CommandPanel" name="GameUI/UIContainer/ConsoleUIContainer/CommandPanel" file="GameUI"> <Frame type="CommandTooltip" name="CommandTooltip"> <FadeTime val="1"/> <StateGroup name="TooltipState"> <DefaultState val="Visible"/> <State name="Hidden"> <Action type="SetProperty" Alpha="0"/> </State> <State name="Visible"/> <!-- Engines makes it fading with Alpha property --> </StateGroup> </Frame> </Frame> <Frame type="InfoPanel" name="GameUI/UIContainer/ConsoleUIContainer/InfoPanel" file="GameUI"> <Frame type="InfoPaneUnit" name="InfoPaneUnit"> <StateGroup name="NameState"> <DefaultState val="UnitNameOff"/> <State name="UnitNameOn"> <!-- For unknown reasons, it doesn't make the link to the text reference --> <!--<When type="Property" frame="$this/NameLabel" Text="@Unit/Name/DTRCommandCenter"/>--> <!-- Replace the text value to yours --> <When type="Property" frame="$this/NameLabel" Text="Command Center"/> <!-- Command buttons from 00, 01 ... to 14 --> <When type="Property" frame="$GameUI_CommandPanel/CommandButton00/NormalImage" Texture="Assets\Textures\btn-blank.dds"/> <When type="Property" frame="$GameUI_CommandPanel/CommandButton00" Hovering="True"/> <Action type="SetState" frame="$GameUI/$parent/CommandTooltip" group="TooltipState" state="Hidden"/> </State> <State name="UnitNameOff"> <Action type="SetState" frame="$GameUI/$parent/CommandTooltip" group="TooltipState" state="Visible"/> </State> </StateGroup> </Frame> </Frame> </Desc>
-
0.95638236977676
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataI was afraid of "always hidden", so it happens on any selection. That sucks.
I don't think you can get a better result with the standard UI.
Kudos to the person who wrote the XML above.
-
0.956372380625215
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataOk, that person added a condition for the existing command panel.
Is your background on button 14 (row 3, column 5) always hidden or only when you select your thingy ?
-
0.956910382764153
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataDo you mean something like this (See attached picture 1) ?
I hovered the button on the bottom left of the command card.
If yes :
I successfully hooked up the command card's tooltip.
However, any element of the command card shares the tooltip. That means it's updated according to the button you hover.
I set the background image of the tooltip to a blank image, it helps to hide without explicitly hiding it.
See attached picture 2.
Note : CTRL + ALT + F12 to open the UI debugger in the game.
I followed the tree structure to hook up the intended element.
On the picture 2 : The 1st hook shows that the command card's tooltip is not linked directly to the command panel.
Finally, you must wonder when you change the background image.
Since the tooltip is shared, there are several ways :
- When the player hovers / "un-hovers" the button. => Impossible.
- When the player selects / deselects the building and according to conditions (did all upgrades). => Yes but no, that means there's only 1 button on the command card.
- All tooltips are modified and you don't care. => Yeah ok (wrong).
- You change something else about the tooltip. => Inset values are 15 for top, right, bottom, left. Set to 0 does no effect.
- You change something else about the tooltip. => AnchorFrame has an offset of 15 for bottom and right anchors. Set to 1 does effects, see attached pictures 3 and 4.
Nevertheless, I did the changes in the UI debugger, to find the culprit (See attached picture 5). We now need to do that in triggers.
Unfortunately, we can't change anchors.
This is a dead end.
Have a nice ... night !
-
0.957000343997248
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataOh. You meant the tooltip, not the button itself.
I tried with empty text for the tooltip, it doesn't show up. See attached pictures.
If it doesn't help, detail how you create your button, please.
-
0.956980612596077
Phosphatidylinositol_ posted a message on [SOLVED]how to make items work in inventory bag instead of on hero?Posted in: DataHello,
A unit can wear an inventory bag and any item is considered as "carried" by the unit.
You may "equip" this item to the unit in a specific slot, depending on the class like "sword", "bow" ... that you decide the function.
Look for the field "Carry Behavior Array +" in Item tab.
Add a Behavior to execute Effects while the item is carried by the unit.
You have some examples in tabs :
- Game data > Ability : Test Inventory
- Game data > Item : Healing Potion TEST [Target, Instant]
- Advanced Game data > Item Container : WoW Character ... .
- Advanced Game data > Item Class : Bag, Potion, Sword ... .
Have a nice day !
-
0.956990480559697
Phosphatidylinositol_ posted a message on [SOLVED]found a blank button to use for secret achievement but it still shows border on hover.Posted in: DataHello,
The texture of the button is in fact a two panels top/bottom which represents the idle (top) and hover (bottom) states. See attached picture 1.
That's not all. The image type rules how the texture is applied to the dialog item, here the button.
- Border : Slices in 4 x 8 squares (= 32). See attached picture 2.
- End Cap : Extends the texture from the middle. See attached picture 3.
- Horizontal Border : Slices in 10 squares, but horizontally. See attached picture 4.
- Nine Slice : Slices in 9 squares.
- Normal : Applies the texture as it is, with box scaling.
- None : No image.
You can identify slices as 4 corners, 4 borders, 1 filler. Remember, if you create your image, that a square has a location and cannot be swapped because it is how the game manages the texture.
And surprise ! For a button, you use "Normal" image type, but your image is a two panels.
Have a nice day.
- To post a comment, please login or register a new account.
0.95620354488279