UE5.4 获取颜色:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年10月26日 (星期六)

  • 当前之前 19:332024年10月26日 (六) 19:33BrainBs 讨论 贡献 539字节 +539 创建页面,内容为“ <pre> #include "Windows/AllowWindowsPlatformTypes.h" #include <windows.h> #include "Windows/HideWindowsPlatformTypes.h" #include "Math/Color.h" ... public: UFUNCTION(BlueprintCallable, Category = "LPFunction") static FColor GetMouseColor(double x, double y); ... FColor ULPFunctionLibrary::GetMouseColor(double x, double y) { HDC hdc = GetDC(NULL); COLORREF curColor = GetPixel(hdc, x, y); ReleaseDC(NULL, hdc); FColor mouseColor(GetRValue(curColor)…”