LevelUp! Studio Experience the new world. 2017-05-26T10:06:07Z https://blog.levelup.in.th/feed/atom/?lang=en WordPress tosawat <![CDATA[สร้าง pre-paid card ของ SCB easy]]> http://blog.levelup.in.th/?p=6137 2017-05-26T10:06:07Z 2017-05-26T10:06:07Z Sorry, this entry is only available in ไทย.

]]>
0
tosawat <![CDATA[วิธีทำ https อย่างง่าย]]> http://blog.levelup.in.th/?p=6129 2017-02-28T16:44:41Z 2017-02-28T16:44:41Z ก่อนหน้านี้ผมได้ลองทำ https ครั้งหนึ่ง ตอนนี้ทำไม่ค่อยเป็น มีปัญหาเยอะมากเลยครับ จนมาเจอนี่เลยครับ https://certbot.eff.org คิดว่าน่าจะช่วยให้การทำ https ง่ายขึ้นเยอะ

ก่อนอื่นเข้าไป ที่นี่ ก่อนเลยครับ

แล้วจะมีช่องให้เราเลือก software กับ os ที่เราใช้

พอเลือกเสร็จก็จะมีวิธีการทำ https มาให้เราทำตาม step ไปเลยครับ

ทีเด็ดสุดๆก็คือ สามารถ auto renew ได้ครับ

]]>
0
tosawat <![CDATA[[UNITY][C#] Projectile]]> http://blog.levelup.in.th/?p=6117 2017-01-31T15:11:00Z 2017-01-31T15:11:00Z IEnumerator projectile(Transform trans, Vector3 from, Vector3 to, float height, float time)
{
trans.localPosition = from;
yield return null;

float Vx = (to.x – from.x) / time;
float Vy = 2 * height / (0.33f * time);
float A1 = -2f * height / Mathf.Pow(0.33f * time, 2);

float t = 0;
while (t <= 0.33f * time)
{
float deltaTime = Time.deltaTime;
float deltaSx = Vx * deltaTime;
Vy += A1 * deltaTime;
float deltaSy = Vy * deltaTime;
trans.localPosition = new Vector3(trans.localPosition.x + deltaSx, trans.localPosition.y + deltaSy);

t += deltaTime;
yield return null;
}

Vy = 0;
float A2 = -2f * (to.y – from.y – height) / Mathf.Pow(0.67f * time, 2);
while (t <= time)
{
float deltaTime = Time.deltaTime;
float deltaSx = Vx * deltaTime;
Vy -= A2 * deltaTime;
float deltaSy = Vy * deltaTime;
trans.localPosition = new Vector3(trans.localPosition.x + deltaSx, trans.localPosition.y + deltaSy);

t += deltaTime;
yield return null;
}
}

]]>
0
Ziah <![CDATA[[Unity] Playing video in the mobile app]]> http://blog.levelup.in.th/?p=6078 2017-02-21T11:48:28Z 2017-01-31T13:17:15Z Sorry, this entry is only available in ไทย.

]]>
0
joeskb <![CDATA[(ไทย) วิธีแก้ไขเพื่อใช้งาน rockmongo]]> http://blog.levelup.in.th/?p=6109 2017-01-31T05:56:44Z 2017-01-31T05:56:44Z Sorry, this entry is only available in ไทย.

]]>
0