- most basic way to display(draw) an image onscreen
- can be done with either Stateless(Texture, TextureRegion) or Stateful(Sprite)
- with the Stateless(Texture, TextureRegion) approach -> you need to specify the x,y coordinates on each draw call
- with the Stateful(Sprite) approach -> the needed x,y coordinates are saved into the Sprite object itself
- most basic way to display(draw) an image onscreen
- can be done with either Stateless(Texture, TextureRegion) or Stateful(Sprite)
- with the Stateless(Texture, TextureRegion) approach -> you need to specify the x,y coordinates on each draw call
- with the Stateful(Sprite) approach -> the needed x,y coordinates are saved into the Sprite object itself
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance force ; needs to be first | |
SetCapsLockState, alwaysoff ; needs to be second | |
; --------------Put File into---------- | |
; C:\Users\[Username]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup | |
; --------------Keyboard--------------- | |
z::y | |
y::z |
Windows 10 Linux/Ubuntu Subsystem
- https://msdn.microsoft.com/en-us/commandline/wsl/install_guide
- https://www.howtogeek.com/265900/everything-you-can-do-with-windows-10s-new-bash-shell/
Install Arch Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<templateSet group="scala"> | |
<template name="T" value="<$TAG$>$SELECTION$</$TAGNAME$> " description="Surround with <tag></tag>" toReformat="true" toShortenFQNames="true"> | |
<variable name="TAG" expression="" defaultValue="" alwaysStopAt="true" /> | |
<variable name="TAGNAME" expression="firstWord(TAG)" defaultValue="""" alwaysStopAt="false" /> | |
<context /> | |
</template> | |
<template name="logger" value="val log: Logger = Logger[$CLASS_NAME$]" description="Template to import Logger" toReformat="false" toShortenFQNames="true"> | |
<variable name="CLASS_NAME" expression="fileName()" defaultValue="" alwaysStopAt="true" /> | |
<context> | |
<option name="SCALA_CODE" value="true" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<keymap version="1" name="Eclipse my^^" parent="Eclipse"> | |
<action id="ChooseRunConfiguration"> | |
<keyboard-shortcut first-keystroke="shift alt f10" /> | |
<keyboard-shortcut first-keystroke="shift ctrl altGraph space" /> | |
</action> | |
<action id="CommentByLineComment"> | |
<keyboard-shortcut first-keystroke="ctrl slash" /> | |
<keyboard-shortcut first-keystroke="ctrl divide" /> | |
<keyboard-shortcut first-keystroke="shift ctrl c" /> | |
</action> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MemberFilterActionGroup.org.eclipse.jdt.ui.JavaOutlinePage.4=true | |
MemberFilterActionGroup.org.eclipse.jdt.ui.JavaOutlinePage.8=true | |
Refactoring.savealleditors=true | |
breadcrumb.org.eclipse.jdt.ui.JavaPerspective=true | |
cleanup.add_default_serial_version_id=true | |
cleanup.add_generated_serial_version_id=false | |
cleanup.add_missing_annotations=true | |
cleanup.add_missing_deprecated_annotations=true | |
cleanup.add_missing_methods=true | |
cleanup.add_missing_nls_tags=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false | |
ColorsAndFontsPreferencePage.expandedCategories=Torg.eclipse.ui.workbenchMisc | |
ColorsAndFontsPreferencePage.selectedElement=Forg.eclipse.ui.workbench.texteditor.blockSelectionModeFont | |
ENABLED_DECORATORS=org.eclipse.m2e.core.mavenVersionDecorator\:false,org.eclipse.egit.ui.internal.decorators.GitLightweightDecorator\:true,org.eclipse.jdt.ui.override.decorator\:true,org.eclipse.jdt.ui.interface.decorator\:false,org.eclipse.jdt.ui.buildpath.decorator\:true,org.eclipse.m2e.core.maven2decorator\:true,org.eclipse.mylyn.context.ui.decorator.interest\:true,org.eclipse.mylyn.tasks.ui.decorators.task\:true,org.eclipse.mylyn.team.ui.changeset.decorator\:true,org.eclipse.team.cvs.ui.decorator\:true,org.eclipse.ui.LinkedResourceDecorator\:true,org.eclipse.ui.SymlinkDecorator\:true,org.eclipse.ui.VirtualResourceDecorator\:true,org.eclipse.ui.ContentTypeDecorator\:true,org.eclipse.ui.Re |
Custom shortcuts
-
ctrl + o -> (quick) outline view
-
ctrl + alt + h -> call hierarchy
-
shift + alt + l -> extract variable
-
shift + alt + m -> extract method
-
ctrl + shift + r -> search resource
-
ctrl + shift + t -> search class
Sources/Links
Notes
Wikis
- https://github.com/Requarks/wiki - not ready, being rewritten...
OlderNewer