PIXNET Logo登入

狼翔天地

跳到主文

軟體、程式、下載、動漫、資源、好康、心情分享

部落格全站分類:不設分類

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 6月 05 週五 202010:06
  • Unity 2017.3.1f1 使用 Android Studio 3.6.1 jar 教學(Unity&AndroidStudio Integration)

批注 2020-06-05 095853.png
此為Unity 呼叫 Android 底層功能 jar 檔範例
於Adnroid Studio 建立新專案時,選Empty Activity,下一步
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(157)

  • 個人分類:教學
▲top
  • 6月 02 週二 202018:52
  • golang map[string]interface{} 多層取值 type interface {} does not support indexing 解決方法

目前遇到一問題,如何從
map[string]interface{} 裡面內容如: {"a":92, "b":{"c": "123", "d": 1235}}
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(954)

  • 個人分類:程式設計
▲top
  • 5月 26 週二 202018:18
  • Unity 使用漸層字型

Unity 若要使用漸層字型,可以新增一個TextGradient的cs來控制,這個檔案丟在你Assets中scripts底下就可以使用了
using UnityEngine;
using UnityEngine.UI;
 
/// <summary>
/// 該效果為 UGUI Text 文字顏色漸層效果. 
/// </summary>
[AddComponentMenu( "UI/Effects/Gradient" )]
public class TextGradient : BaseMeshEffect
{
  public Color32 topColor = Color.white;
  public Color32 bottomColor = Color.black;
 
  public override void ModifyMesh( VertexHelper vh )
  {
    float bottomY = -1;
    float topY = -1;
 
    for ( int i = 0; i < vh.currentVertCount; i++ )
    {
      UIVertex v = new UIVertex();
      vh.PopulateUIVertex( ref v, i );
 
      if ( bottomY == -1 ) 
        bottomY = v.position.y;
      if ( topY == -1 ) 
        topY = v.position.y;
 
      if ( v.position.y > topY ) 
        topY = v.position.y;
      else if ( v.position.y < bottomY ) 
        bottomY = v.position.y;
    }
 
    float uiElementHeight = topY - bottomY;
 
    for ( int i = 0; i < vh.currentVertCount; i++ )
    {
      UIVertex v = new UIVertex();
      vh.PopulateUIVertex( ref v, i );
 
      v.color = Color32.Lerp( bottomColor, topColor, (v.position.y - bottomY) / uiElementHeight );
      vh.SetUIVertex( v, i );
    }
  }
 
}
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(232)

  • 個人分類:程式設計
▲top
  • 5月 14 週四 202018:12
  • 微信SDK XCode 錯誤wxlog:Error:fail to load Keychain status:-25300, keyData null:1

最近因為要使用微信SDK 出版,突然發現SDK 1.8.6.1 版本功能無法使用
目前找到的解決方法為在XCode專案加上以下這一段就行了
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(274)

  • 個人分類:程式設計
▲top
  • 2月 17 週一 202014:55
  • vsCode 紫醉金迷 SynthWave '84(赛博朋克) 主題安裝

undefined
主題預覽
於Extension 中 輸入SynthWave '84
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(95)

  • 個人分類:程式設計
▲top
  • 2月 13 週四 202017:00
  • Kubernetes-dashboard 建置

相關gitHub:  https://github.com/kubernetes/dashboard
目前接觸k8s,學習中,發現使用dashboard登入,需要產生token, 以下為測試過可以正常產生token的方法
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(69)

  • 個人分類:程式設計
▲top
  • 11月 04 週一 201911:40
  • vue 使用ngrok 跳出 Invalid Host Header

今天想讓公司人員透過外網方式連接Demo網頁,結卻發現無法正常顯示網頁內容出現Invalid Host Header
則解決辦法為在 在webpack.dev.conf.js的devServer配置中添加disableHostCheck: true
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(2,167)

  • 個人分類:
▲top
  • 10月 30 週三 201911:08
  • golang gorm use logrus

若要在專案中,顯示gorm.Debug() 相關的sql 資訊以利偵錯使用,可以搭配logrus 
type GormLogger struct{}
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(203)

  • 個人分類:
▲top
  • 10月 28 週一 201916:14
  • golang get, post json, post form data example

golang使用http client發起get和post請求示例
get請求
get請求可以直接http.Get方法,非常簡單。
func httpGet() {
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(666)

  • 個人分類:程式設計
▲top
  • 10月 07 週一 201909:47
  • Fira Code | 好用的VSCode字體

教程
下載
在倉庫下載最新字體:https://github.com/tonsky/FiraCode/releases
安裝
下載成功後解壓到任意位置(安裝完成後可刪除),找到 ttf (FiraCode-master\distr\ttf) 目錄,全選所有 .ttf 文件,點擊右鍵進行安裝,在你的電腦上安裝完成後到vscode中去配置。
(繼續閱讀...)
文章標籤

狼翔月影 發表在 痞客邦 留言(0) 人氣(5,530)

  • 個人分類:程式設計
▲top
«123...66»

Visitor Map

無聊餵一下魚

最新文章

  • GoFrame 搭配 Grafana 讀取 Loki log
  • 2022 台灣出國辦理手續(4月)
  • React mqtt Buffer is not undefined
  • vue 在生產環境下,屏蔽console.log在控制台的輸出
  • GitKraken Crack Method
  • Jenkins LineNotify
  • React Native 安裝 pod install 錯誤 Flipper-Glog C compiler cannot create executables
  • MySQL 8.x Authentication plugin 'caching_sha2_password' cannot be loaded
  • CentOS rh-php71 phpMyAdmin 問題解法 mbstring missing, Permission denied(13)
  • Unity EncodeToPNG 無法使用

熱門文章

  • (73,915)我的網站為什麼無法連線?
  • (64,020)Microsoft Office 2007 Enterprise 繁體中文正式版連序號
  • (29,232)Linux,基本 VIM 操作指令
  • (16,962)[GHIBLI MUSIC宮崎駿原聲音樂專輯][合集][MP3][PGIRL]
  • (14,924)12星座男女床上欲仙欲死秘籍
  • (10,977)自己動手製作CHM檔
  • (9,089)Adobe Photoshop CS3 繁體中文版 +Crack
  • (2,509)漂亮能幹的Wallpaper Calendar
  • (1,687)RPG常用指令
  • (142)移動世界 Jumper

文章精選

文章搜尋

文章聯播

誰來我家

文章分類

  • 教學 (12)
  • 專案管理 (1)
  • 音樂天地 (2)
  • 旅遊分享 (1)
  • 科技新知 (6)
  • 伺服器領域 (5)
  • BT天堂 (21)
  • 心靈成長 (5)
  • 運動 (1)
  • 動漫 (4)
  • 程式設計 (364)
  • 下載天堂 (34)
  • 生活趣事 (1)
  • 理財新知 (9)
  • 心、星、占、運 (93)
  • 好康分享 (33)
  • 健康保健 (7)
  • 兩性交往 (8)
  • 心情雜記 (5)
  • 電腦疑難雜症 (15)
  • 工作甘苦談 (15)
  • 未分類文章 (1)

留言板

標籤雲

參觀人氣

  • 本日人氣:
  • 累積人氣: