UE4 - How can I DOF-Blur the screen on pause? - unreal-engine4

That's what I'd like to know.
I don't understand the unreal engine scripting at all..
I know how to enable the blur manually, but how do I enable it on pause?
I have a Widget Blueprint with RESUME and EXIT buttons..
And when I open the menu, the background should be blurry.. now the menu is openable by pressing Tab(because in the editor ESC quits testing mode...)
So how do I make it blur on pause?

So I found the solution more than a week ago(I wasn't home) and I forgot to tell the answer to this question to all of you guys.
I made a few pictures telling you exactly what to do :).
Click the white arrow in the 'Make PostProcessSettings' to see all this options and check the 'Override Depth Of Field Method' checkbox.
Now find the 'Method' option and change it to Gaussian.
And you're done. You can see the results below this text.
In-Game:
In Menu[By pressing ESC(you need to connect it to a Key Event). Btw you can make that blue shade in the widget blueprint(it's an image component with a transparent color)]:
I hope I helped :).
Feel free to ask if you got any problems.

Related

Atom popup, really annoying

I have no idea what plugin is doing this, but it's incredibly annoying everytime I move mouse mouse to constantly get a popup. When I am coping and pasting code it pops up, and I have to click somewhere else, and it blocks so much of screen. Anyone know what plugin might be doing this?
For me, this was happening because of the atom-ide-datatip package. I went into the settings for that package and unchecked "Show datatip automatically on mouse hover", and checked "Show datatip automatically on cursor stay" as that got in the way for me less.
In my opinion, it would be nice if you could turn off those datatips for certain data types, like int and str. I mostly use this package for the function parameter popups.

Eclipse shows only te function selected in outline

Maybe I've broke some stuff in settings or something like this but Eclipse starts to show in editor ONLY the function/method that chosen in outline pane. No other code showing in editor. Unchecking "Link with editor" was not helpful. Once thing is helping is reopening of file. But once clicking something in Outline pane all code except chosen function disappearing again so Outline becomes quite useless pane.
Does somebody knows where I could turn off such behavior to make it acting as it was - just jumping to selected function but not hide other code.
Thanks in advance! And sorry for my english.
Sorry everybody for posting so silly question. However, maybe it would be helpful for somebody to know - just found why Eclipse was acting like I've described.
Settings->Javascript->Editor->Only show the selected element. Uncheck this.
Don't even know why it needs such strange settings option...
Thanks again!

Where did psuedo elements in Chrome Inspector go?

I cannot seem to find the little dotted box in my Chrome properties inspector that let me see psuedo elements like :hover, :active, :focus, :visited
Here is a link to what I see:
Instead there is a new little animations icon there. Yay for that, it sounds handy, but I would like the dotted box back, please.
I can right click on an element and "Force element state" to change the psuedo class, but this method is slower. I like the old way.
I've been looking all over the place, for example this link shows the old way: See :hover state in Chrome Developer Tools
I even looked in Chrome's change log and at their developer site instructions (https://developer.chrome.com/devtools) but no love!
Thanks guys,
-B
for anyone else it appears that the middle icon in the image above, the pushpin icon, now replaces the dotted box. Pressing on the pushpin brings up the same controls as before.

Apatana 3.0.7 Code Assist - Auto Complete

Hey I'm a Cisco guy,
Just started with apatana to design a web page for my small business. My question is about the code assist and the auto complete feature. Apatana is very good at picking up what i'm typing be it an element, selector or even value sometimes. The issue im having is when i begin entering text. The code assist window will pop up, and present a list of possible choices based on what i have entered so far. then i have to either stop what i'm doing and press the down arrow, or grab my mouse and select my choice for assist. Or, i can continue typing out the element (or whatever) to narrow down the list. What I'm hoping is that, there exists a feature like in cisco terminal. where you can press the "tab" key to goto the next branch point of ambigious choices.
Let's say I was looking for the background-color selector. In my ideal world with code assist it would go something like this.
"b" ->[tab]
"back" ->"g"
"backg" ->[tab]
"background" ->"-co"
"background-co" ->[enter]
"background-color:"
I hope this makes sense. Thank you for reading.
Moved to http://jira.appcelerator.org/browse/APSTUD-4251
That feature is not currently available, but it's an interesting idea. I'd suggest filing a feature request at http://jira.appcelerator.org

How to wire up an editor to the location cursor icons?

I have built a graphical editor as an Eclipse plugin. Users may zoom into and pan about the graphical image.
I would like to employ the Back and Forward arrow icons in the Eclipse icon bar to step back and forth through the graphical image, in a similar manner to what is already possible in textual editors. All of my references go quiet on this subject
All clues or better references are most welcome.
M.
I think you need to define a RetargetAction
See an example at
http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/rcp_actions.htm
(I haven't done this myself, but it sounds right...)
See also http://help.eclipse.org/ganymede/topic/org.eclipse.platform.doc.isv/guide/wrkAdv_retarget.htm