当前位置:  编程技术>移动开发
本页文章导读:
    ▪自定义的Gallery 的 onKeyDown 步骤没反应 执行没效果!        自定义的Gallery 的 onKeyDown 方法没反应 执行没效果!!今天做项目用到了 自定义的Gallery,感觉很好用,但是在过程中却遇到了一个让人十分蛋疼的事情。大家肯定都知道,咱们用gallery 的时.........
    ▪ [Unity3D]呼风唤雨:天候插件UniSky的使用教程与案例        [Unity3D]呼风唤雨:天气插件UniSky的使用教程与案例UniSky是Unity3D的一款模拟环境天气的插件,使用它可以简单的实现呼风唤雨的各种功能。 下载地址:请点击我 使用起来也非常的方便。 引入P.........
    ▪ app store 批改sellor名称       app store 修改sellor名称 ============================================================ 博文原创,转载请声明出处 蓝岩--移动互联网老兵 ============================================================ 公司的app由于提交时候的.........

[1]自定义的Gallery 的 onKeyDown 步骤没反应 执行没效果!
    来源: 互联网  发布时间: 2014-02-18
自定义的Gallery 的 onKeyDown 方法没反应 执行没效果!!

今天做项目用到了 自定义的Gallery,感觉很好用,但是在过程中却遇到了一个让人十分蛋疼的事情。大家肯定都知道,咱们用gallery 的时候需要设置item之间的间隔,我也在xml中设置了android:spacing="7dp" ,然后写了两个按钮实现Gallery的滚动,但是奇怪的事情发生了,Gallery 竟然不滚动,恶心死了!!几番折腾,终于搞定了!!

这样既可:

在代码中 setSpaceing(20),然后在 left  button按键中 gallery_hole.onScroll(null, null, 1*(20 + value), 0);
gallery_hole.onKeyDown(KeyEvent.KEYCODE_DPAD_RIGHT, null);  


right button中  gallery_hole.onScroll(null, null, -1*(20+value), 0);
gallery_hole.onKeyDown(KeyEvent.KEYCODE_DPAD_LEFT, null);   


这里设置的 value之后, 比你的 spaceing大一点,就行啦!! 就能滚动啦!! 哇哈哈


1楼xyz_fly前天 23:07绕道解决,为何不走直道求近nn试试把button该为imageviewRe: tenggangren昨天 11:54回复xyz_flyn这也行啊

    
[2] [Unity3D]呼风唤雨:天候插件UniSky的使用教程与案例
    来源: 互联网  发布时间: 2014-02-18
[Unity3D]呼风唤雨:天气插件UniSky的使用教程与案例

UniSky是Unity3D的一款模拟环境天气的插件,使用它可以简单的实现呼风唤雨的各种功能。

下载地址:请点击我

使用起来也非常的方便。

引入Package后(注意路径必须是英文否则会出错)Project中会多一个文件夹:

下面我们来简单的创建一个下雨的场景。

首先从UniSky中拖动UniSkyAPI到Hierachy面板:

然后再把Camara与API建立连接:

接下来创建一个空的GameObject用来控制UniSkyAPI,并将脚本ExampleScript拖到它身上:


这个脚本的源码如下:

using UnityEngine;
using System.Collections;

public class ExampleScript : MonoBehaviour {

	// instance of the API
	private UniSkyAPI uniSky;
	
	void Awake() {
		
		// Define instance
		uniSky = GameObject.Find("UniSkyAPI").GetComponent("UniSkyAPI") as UniSkyAPI;
		
		// Initiate and create default UniSky 
		uniSky.InstantiateUniSky();
		// Set some initial states 
		uniSky.SetTime(12.0f);
		uniSky.SetAmbientLighting(new Color(0.1f, 0.1f, 0.1f, 0.1f));
		uniSky.SetStormCenter(new Vector3(0,0,0));
		uniSky.SetSunShadows(LightShadows.Soft);
		
		// Functions to interpolate parameters over time
		/*
		uniSky.LerpCloudCover(0.5f, 5000.0f);
		uniSky.LerpPrecipitationLevel(0.6f, 5000.0f);
		uniSky.LerpStormCloudCover(-1.0f, 10000.0f);
		uniSky.LerpRainLevel(100, 0.2f, 10000.0f);
		uniSky.LerpStormLevel(150, 0.4f, 20000.0f);
		uniSky.LerpSunIntensity(0.2f, 10000.0f);
		uniSky.LerpFogLevel(0.02f, 20000.0f);
		uniSky.LerpAmbientLighting(new Color(0.0f, 0.0f, 0.0f, 0.0f), 5000);
		uniSky.ClearDropletBuffer();
		uniSky.LerpDropletLevel(10, 20000.0f);
		*/
	}

	void Update() {

	}
}

以下是对于插件API函数的简要解释:

API函数/参数
下面是对UniSky参数的介绍,并且都对其进行了效果解释。下面的列表可以再UniSkyAPI.js/cs中找到。
//一天的时间(0到24小时循环)
SetTime(float time);
LerpTime(float time, float milliseconds);
GetTime();



//返回太阳的颜色
GetSunColor();
//启用或禁用太阳和月亮的阴影。类型: "LightShadows.None" 、"LightShadows.Hard"和 "LightShadows.Soft"
public void SetSunShadows(LightShadows sunShadows)
public void SetMoonShadows(LightShadows moonShadows)

 
//设置暴风雨云层中心的坐标
SetStormCenter(Vector3 stormCenter);

 
//散射半径,他影响着天空的颜色(默认是45000,通常情况下是一个真实的天空)
SetScatteringRadius(float scatteringRadius);
LerpScatteringRadius(float scatteringRadius, float milliseconds);

 
//主大气层的覆盖是(-5到5)
void SetCloudCover(float cloudCover);
LerpCloudCover(float cloudCover, float milliseconds);

 
//黑暗的云层,不是暴风雨的大气层。(2-0,越低,云层颜色越深)
SetPrecipitationLevel(float precipitationLevel);
LerpPrecipitationLevel(float precipitationLevel, float milliseconds);

 
//暴风雨的覆盖层级是(建议是-3.5到-1.0)
SetStormCloudCover(float cloudCover);
LerpStormCloudCover(float cloudCover, float milliseconds);

 
//雨的数量。没有大暴雨的,但是都是小雨。(任何地方都是从0-1000)
SetRainLevel(float rainLevel, float sfxLevel);
LerpRainLevel(float rainLevel, float sfxLevel, float milliseconds);
 
//特大暴雨。一片都有雨。(任何地方都是从0-200)
SetStormLevel(float stormLevel, float sfxLevel);
LerpStormLevel(float stormLevel, float sfxLevel, float milliseconds);
 
//太阳的亮度或浓度。由于黑暗中阴天或暴风雨天(0到0.5)淡入淡出
SetSunIntensity(float intensity);
LerpSunIntensity(float intensity, float milliseconds);
 
//设置内置雾(0到0.03)
SetFogLevel(float fogLevel);
LerpFogLevel(float fogLevel, float milliseconds);

 
//设置屏幕图像上滴落的速率(0到5)
SetDropletLevel(float dropletLevel);
LerpDropletLevel(float dropletLevel, float milliseconds);



//设置云的方向,加速度和演化的速度。X=x方向和加速度,Y=y方向和加速度,Z=演化速度(0到1)
SetCloudSpeedDirection(Vector3 speedDirection);
LerpCloudSpeedDirection(Vector3 speedDirection, float milliseconds);
//光晕差异。设置云边缘的照明强度(0到10)。提示:设置为0左右,会有一个很好的卷云效果。
SetGlowVariance(float glowVariance);
LerpGlowVariance(float glowVariance, float milliseconds);
 
//设置云褪色到大气中的距离(0到20)
SetViewDistance(float viewDistance);
LerpViewDistance(float viewDistance, float milliseconds);
 
//调节默认颜色。建议RGB的默认值(1.5,1.5,1.5)。如果你想要粉红色或绿色的云:D
SetColorVariance(Vector3 colorVariance);
LerpColorVariance(Vector3 colorVariance, milliseconds);

//如果你想时间自动循环,这个是时间流逝的速度。(0到0.1)
SetSpeedOfTime(float speedOfTime);



//改变光散射到云中,只影响云的颜色。最好是保持他的默认值,40.(-20到100)
SetRayleighLevel(float rayleighLevel);
//如果启用该选项,一天中时间的播放器与系统时钟同步。
SetUseSystemTime(bool enabled);

 
//改变环境光的颜色。我建议在一天的时间内进行插值或混浊。
SetAmbientLighting(Color ambientLevel);
LerpAmbientLighting(Color ambientLevel, float milliseconds);

 
//设置月亮的大小
SetMoonSize(float moonSize);
 
//清除雾滴缓存
ClearDropletBuffer();
 
//设置打雷闪电的频率。越高越频繁(0到100)。
SetLightningFrequency(float
frequency);

此时点击运行,便会发现UniSky已经基本成型了:



当然想过不是很理想,因为没有地面。。

如果需要下雨的效果,只需要加上这么一行代码:

uniSky.SetStormLevel(1000,1000);
或者是:

uniSky.SetRainLevel(1000,1000);

就可以实现了:

完整的学习案例还是参照插件中自带的案例UniSky Example Scene,效果非常好:

当然啦,如果只是要简单的下雨特效,推荐这款插件:Rain.package


    
[3] app store 批改sellor名称
    来源: 互联网  发布时间: 2014-02-18
app store 修改sellor名称

============================================================
博文原创,转载请声明出处
蓝岩--移动互联网老兵
============================================================
公司的app由于提交时候的疏忽,“开发商”名称写的不合适,老大要求修改,查了半天,说是只能在第一次app提交时候设置“seller”名称,如果要修改,需要想苹果提供公司合并、重组等合同的信息。

当然,还有另一种方法,就是重新申请一个开发者账号,删除过去的app,重新从0开始上传发布新app。

这些是在论坛上找到的资料,比较老,我担心如果苹果的政策改变了,我的99刀岂不打了水漂?一定要找到官方的文档才可以进行下一步。

没找到,于是打算给苹果写邮件,在“Contact Us”里面,无意中看了一下常见问题,找到了答案,如下


Welcome to the iTunes Contact Us module. Please select the most relevant options from the dropdown menu(s) to help us precisely identify your issue. You may click on the "Start Over" button at any point within Contact Us to return you to the first Contact Us screen.


1.Please choose from the following topics:
2.Please choose from the following topics:
Frequently Asked Questions:
Where do I set my company name that displays in the App Store and can I change that information once it is set? 
Your company name is set by you when you upload your first app in iTunes Connect. This is part of your default settings and applies to all applications delivered through your account. The company name is also referred to as your artist name because this name displays on the App Store to organize all of your applications onto one product page. This allows App Store customers to view your entire catalog of apps in one location.


Your company name should be your legal entity name as contracted with the iPhone Developer Program. Once you enter your company name in iTunes Connect, it cannot be changed at a later date. This is a permanent setting. 




ok,看到这些,心里踏实了,重新申请。。。。

目前正在申请新账号中,如果有错误,我会继续记录。附截图一张:




    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3