Difference between revisions of "LlList2Key/ja"
Jump to navigation
Jump to search
m (Delete unnecessary copy) |
|||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{LSL_Function/list/element/ja|src|index|key|return={{HoverText| | {{LSL_Function/list/element/ja|src|index|key|return={{HoverText|空の文字列|空の文字列: ""}}}} {{LSL_Function/ja | ||
|func_id=189|func_sleep=0.0|func_energy=10.0 | |func_id=189|func_sleep=0.0|func_energy=10.0 | ||
|func=llList2Key|return_type=key | |func=llList2Key|return_type=key|p1_type=list|p1_name=src|p2_type=integer|p2_name=index | ||
|p1_type=list|p1_name=src | |||
|p2_type=integer|p2_name=index | |||
|func_footnote | |func_footnote | ||
|func_desc | |func_desc | ||
Line 11: | Line 9: | ||
|constants | |constants | ||
|examples= | |examples= | ||
< | <source lang="lsl2"> | ||
// チャット履歴 (Ctrl-H) で最適な表示がされます。 | |||
default | default | ||
{ | { | ||
Line 29: | Line 28: | ||
} | } | ||
} | } | ||
</ | </source> | ||
|helpers | |helpers | ||
|also_functions={{LSL DefineRow||{{LSLG/ja|llGetListEntryType}}|}} | |also_functions={{LSL DefineRow||{{LSLG/ja|llGetListEntryType}}|}} |
Latest revision as of 06:08, 25 February 2016
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
要約
関数: key llList2Key( list src, integer index );仕様
インデックス | 正 | 負 |
---|---|---|
先頭 | 0 | -length |
末尾 | length - 1 | -1 |
インデックス
- 正のインデックスは先頭から数えます。先頭の要素は 0、末尾の要素は (length - 1) のインデックスを持ちます。
- 負のインデックスは末尾から数えます。先頭の要素は -length、末尾の要素は -1 のインデックスを持ちます。
警告
- index が正常なインデックス範囲を外れていても、スクリプトはエラー表示を出さずに処理を続けます。
サンプル
// チャット履歴 (Ctrl-H) で最適な表示がされます。
default
{
state_entry()
{
list my_list = ["a", 1, 2.0, <1,2,3>, <1,2,3,4>, llGetOwner()];
integer i;
for (i=0;i<llGetListLength(my_list); ++i)
{
llOwnerSay("string=" + llList2String(my_list,i)
+ "\n integer=" + (string)llList2Integer(my_list,i)
+ "\n float=" + (string)llList2Float(my_list,i)
+ "\n vector=" + (string)llList2Vector(my_list,i)
+ "\n rot=" + (string)llList2Rot(my_list,i)
+ "\n key=" + (string)llList2Key(my_list,i) );
}
}
}
関連項目
特記事項
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。