Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
RenderTool committed Sep 25, 2024
1 parent ee14a39 commit 36bfd2f
Show file tree
Hide file tree
Showing 11 changed files with 50 additions and 3 deletions.
17 changes: 16 additions & 1 deletion src/language/java/5-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,19 @@ email:
```java
//注解键名
@ConfigurationProperties(prefix = "email")
```
```

## 多环境多文件配置

### 多环境配置

![](assets%2Fjdk0013.png)


### 使用外置配置文件

![](assets%2Fjdk0012.png)

<chatmessage avatar="../../assets/emoji/blzt.png" :avatarWidth="40">
很简单拷一份yml就行了,在jar包同级目录启动即可。
</chatmessage>
2 changes: 1 addition & 1 deletion src/language/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ REM 启动应用程序,并保持命令窗口打开
start cmd /k "cd /d %CURRENT_DIR% && java -jar %JAR_FILE%"
exit
```
```
Binary file added src/language/java/assets/jdk0012.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/language/java/assets/jdk0013.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/tools/vuepress/assets/vue0001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/tools/vuepress/vue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
title: vue2.基本使用
order : 1
category:
- vue
---

## 基本指令

![](assets%2Fvue0001.png)

### 指令官网

[https://cn.vuejs.org/api/built-in-directives.html#v-bind](https://cn.vuejs.org/api/built-in-directives.html#v-bind)
1 change: 1 addition & 0 deletions src/tools/vuepress/vuepress-add-comp.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ category:
vuepress添加自定义组件-以实现聊天气泡为例。

## 实现目标

<chatmessage avatar="../../assets/emoji/ybk.png" :avatarWidth="40">
这是一条聊天消息。
</chatmessage>
Expand Down
Binary file added src/unreal/assets/bp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/unreal/assets/bp_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion src/unreal/core[核心]/4.4-EnhancedInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,4 +360,14 @@ enum class EMouseCaptureMode : uint8
/** Capture only when the right mouse button is down, not any of the other mouse buttons */
CaptureDuringRightMouseDown,
};
```
```

![](..%2Fassets%2Fbp.png)

## 技巧

<chatmessage avatar="../../assets/emoji/hx.png" :avatarWidth="40">
显示UI时可以考虑把鼠标捕获到屏幕中间
</chatmessage>

![](..%2Fassets%2Fbp_001.png)
7 changes: 7 additions & 0 deletions src/unreal/core[核心]/5-Interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,13 @@ if (Interface)
}
```

```cpp
if (Actor->Implements<UHighlightInterface>())
{
IHighlightInterface::Execute_UnHighlightActor(Actor);
}
```

### 参考链接

[官方文档](https://docs.unrealengine.com/4.26/zh-CN/ProgrammingAndScripting/GameplayArchitecture/Interfaces/)

0 comments on commit 36bfd2f

Please sign in to comment.